ListValuesControllerUpdateValue Method |
[This is preliminary documentation and is subject to change.]
Updates an existing List Value to the database. All required fields in the List Value should be filled out.
Don't forget the ListTypeGuid and ListColumnGuid guids.
Namespace: WebServiceKit.ControllersAssembly: WebServiceKit (in WebServiceKit.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic IHttpActionResult UpdateValue(
QueuedObject _qo
)
Public Function UpdateValue (
_qo As QueuedObject
) As IHttpActionResult
public:
IHttpActionResult^ UpdateValue(
QueuedObject^ _qo
)
member UpdateValue :
_qo : QueuedObject -> IHttpActionResult
Parameters
- _qo
- Type: QueuedObject
The serialized List Value data (pulled from the request body).
Return Value
Type:
IHttpActionResult200 OK if the List Value is updated, 404 if it isn't already in the database, otherwise 400.
Remarks
The List Value must be formatted using XML or JSON depending on the client PUT. Call requires a valid login token.
HTTP Method: PUT
[Route("api/listvalues/update")]
See Also