Skip to main content
DELETE
/
organizations
/
{organizationName}
/
groups
/
{groupName}
/
tokens
/
{tokenName}
Delete a group token
curl --request DELETE \
  --url https://{organization}.admin.credibledata.com/api/v0/organizations/{organizationName}/groups/{groupName}/tokens/{tokenName} \
  --header 'Authorization: Bearer <token>'
{
  "code": "<string>",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organizationName
string
required

The unique identifier of the organization Standard identifier pattern for resource names

Pattern: ^[a-zA-Z0-9_-]+$
groupName
string
required

The unique identifier of the group Standard identifier pattern for resource names

Pattern: ^[a-zA-Z0-9_-]+$
tokenName
string
required

The unique identifier of the token to delete Standard identifier pattern for resource names

Pattern: ^[a-zA-Z0-9_-]+$

Response

Group token deleted successfully