Chilkat Online Tools

Unicode C++ / DocuSign Admin API / Deletes a User Import request

Back to Collection Items

void ChilkatSample(void)
    {
    http.put_AuthToken(L"{{accessToken}}");    json.EmitSb(sbRequestBody);
    }

Curl Command

curl -X DELETE
	-H "Accept: application/json"
	-H "Content-Type: application/json"
	-H "Authorization: Bearer {{accessToken}}"
	-d '{}'
https://{{hostenv}}/Management/v2/organizations/{{organizationId}}/imports/bulk_users/{{importId}}

Postman Collection Item JSON

{
  "name": "Deletes a User Import request",
  "request": {
    "method": "DELETE",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Authorization",
        "value": "Bearer {{accessToken}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{}"
    },
    "url": {
      "raw": "https://{{hostenv}}/Management/v2/organizations/{{organizationId}}/imports/bulk_users/{{importId}}",
      "protocol": "https",
      "host": [
        "{{hostenv}}"
      ],
      "path": [
        "Management",
        "v2",
        "organizations",
        "{{organizationId}}",
        "imports",
        "bulk_users",
        "{{importId}}"
      ],
      "variable": [
        {
          "key": "organizationId",
          "value": "{{organizationId}}"
        },
        {
          "key": "importId",
          "value": "{{importId}}"
        }
      ]
    },
    "description": "Required scopes: user_write"
  },
  "response": [
  ]
}