Returns (Task)
This builds a Put request to send to the server.
Name | Description |
---|---|
value | |
parameters | |
uriSegments |
Example in C#
// Returns: nothing
await client.PutWithParams(T value, Object parameters, 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?URI_SEGMENTS \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-D 'ITEM_IN_JSON'