Chilkat Online Tools

Unicode C++ / DocuSign REST API / Deletes brand information from the requested group.

Back to Collection Items

void ChilkatSample(void)
    {
    json.UpdateString(L"brands[0].brandId",L"sample string 1");    http.put_AuthToken(L"{{accessToken}}");    json.EmitSb(sbRequestBody);
    }

Curl Command

curl -X DELETE
	-H "Accept: application/json"
	-H "Authorization: Bearer {{accessToken}}"
	-d '{
  "brands": [
    {
      "brandId": "sample string 1"
    }
  ]
}'
https://domain.com/v2.1/accounts/{{accountId}}/groups/{{groupId}}/brands

Postman Collection Item JSON

{
  "name": "Deletes brand information from the requested group.",
  "request": {
    "method": "DELETE",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      },
      {
        "key": "Authorization",
        "value": "Bearer {{accessToken}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"brands\": [\n    {\n      \"brandId\": \"sample string 1\"\n    }\n  ]\n}"
    },
    "url": {
      "raw": "{{baseUrl}}/v2.1/accounts/{{accountId}}/groups/{{groupId}}/brands",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "v2.1",
        "accounts",
        "{{accountId}}",
        "groups",
        "{{groupId}}",
        "brands"
      ],
      "variable": [
        {
          "key": "accountId",
          "value": "{{accountId}}"
        },
        {
          "key": "groupId",
          "value": "{{groupId}}"
        }
      ]
    },
    "description": "Deletes brand information from the requested group."
  },
  "response": [
  ]
}