Returns (Task)
This builds a Put request to send to the server.
Name | Description |
---|---|
value | |
uriSegments |
Example in C#
// Returns: T
var item = await client.PutItem<T>(Object value, String uriSegments);
Note: The cUrl Command can be repeating -> PARENT_OF_PARENT_OF_OBJECT/PARENT_OF_PARENT_OF_OBJECT.KEY/PARENT_OF_OBJECT/PARENT_OF_OBJECT.KEY/OBJECT_TO_UPDATE and so on
> Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/OBJECT_TO_UPDATE/OBJECT_TO_UPDATE.KEY/OBJECT_TO_UPDATE.ITEM_LINK \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-D 'ITEM_IN_JSON'