Chilkat Online Tools

Unicode C++ / Auth0 Management API / Update a client grant

Back to Collection Items

void ChilkatSample(void)
    {
    json.UpdateString(L"scope[0]",L"");    http.put_AuthToken(L"{{auth0_token}}");    json.EmitSb(sbRequestBody);
    }

Curl Command

curl -X PATCH
	-H "Authorization: Bearer {{auth0_token}}"
	-H "Content-Type: application/json"
	-d '{
  "scope": [
    ""
  ]
}'
https://{{auth0_domain}}/api/v2/client-grants/:id

Postman Collection Item JSON

{
  "name": "Update a client grant",
  "request": {
    "method": "PATCH",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{auth0_token}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n  \"scope\": [\r\n    \"\"\r\n  ]\r\n}"
    },
    "url": {
      "raw": "https://{{auth0_domain}}/api/v2/client-grants/:id",
      "protocol": "https",
      "host": [
        "{{auth0_domain}}"
      ],
      "path": [
        "api",
        "v2",
        "client-grants",
        ":id"
      ],
      "variable": [
        {
          "key": "id",
          "type": "any"
        }
      ]
    }
  },
  "response": [
  ]
}