PatchWithQueryParams

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

Overview of PatchWithQueryParams goes here.

Name Description
patchDoc The JSON patch document to apply
queryParameters Query parameters to append to the URL
uriSegments URI segments to append to the base address

Patch With Query Params

Example in C#

// Returns: nothing
await client.PatchWithQueryParams(item patchDoc, Object queryParameters, 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 PATCH \
               https://api.us.acresecurity.cloud/api/f/OBJECT_TO_UPDATE/OBJECT_TO_UPDATE.KEY?PARAMETERS \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d 'PATCH_DOCUMENT_OF_ITEM_IN_JSON'