PutWithParams

Internal method to perform a PUT request with query parameters Returns (Task)

This builds a Put request to send to the server.

Name Description
value The value to put
parameters Query parameters to append to the URL
uriSegments URI segments to append to the base address

Put With Params

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'