Delete

Delete User Group

DELETE https://api.explo.co/api/delete_user_group/

This endpoint deletes an existing user group.

Path Parameters

Name
Type
Description

Explo-Authorization

string

API authorization token which is unique to your team. You can access this in the Developers tab in your account.

Request Body

Name
Type
Description

data_source_provided_id

string

The data source ID provided in the data tab may be used to identify the data source for the user group

current_token

string

This is the current user group token you have for the user group you want to delete

{
    "success": 1
}

Response field descriptions

Field Name

Type

Description

success

number

Indicates whether the call was successful. 1 if successful, 0 if not.

Example Request

curl --location --request DELETE 'https://api.explo.co/api/delete_user_group/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>' \
--data-raw '{
		"user_group_id": "example_1"
		"current_token": "abcdef"
}'

Last updated

Was this helpful?