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