ListValuesControllerGetValuesByType Method |
[This is preliminary documentation and is subject to change.]
Retrieves all values for a specific list type.
Namespace: WebServiceKit.ControllersAssembly: WebServiceKit (in WebServiceKit.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic IHttpActionResult GetValuesByType(
Guid guid
)
Public Function GetValuesByType (
guid As Guid
) As IHttpActionResult
public:
IHttpActionResult^ GetValuesByType(
Guid guid
)
member GetValuesByType :
guid : Guid -> IHttpActionResult
Parameters
- guid
- Type: SystemGuid
Target list type guid.
Return Value
Type:
IHttpActionResult200 OK and the serialized values of the list type will be returned if the list type guid is found, otherwise 404.
Remarks
The list type values are formatted using XML or JSON depending on the client request. Call requires a valid login token.
HTTP Method: GET
[Route("api/listvalues/types/{guid}")]
See Also