Users > API Tokens

The following endpoints manage and retrieve data about the API tokens assigned to the currently authenticated user.

List users API tokens

get
/users/me/api-tokens

Gets the API tokens of the currently authenticated user.

chevron-right
lockRequired scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired

Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.

If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.

Responses
get
/users/me/api-tokens
200

Successful response

Create new API token

post
/users/me/api-tokens

Create a new API token for the currently authenticated user. Specify the API token scopes in the scope array parameter.

chevron-right
lockRequired scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired

Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.

If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.

Body
labelstringRequired

The API token label visible in the Make user profile.

scopestring · uri[]Required

The API scopes provided to the API token. The API scopes determine the scope of operations that you can do with the API token.

Check the list of all existing Make API scopes with the API call GET /enums/user-api-tokes-scopes.

Responses
post
/users/me/api-tokens
200

Successful response

Delete API token

delete
/users/me/api-tokens/{timestamp}

Deletes currently authenticated user's API token with the specified creation timestamp. Get the API token creation timestamp with the API call GET /users/me/api-tokens in the parameter value created. Copy the timestamp string to the API call path to delete the API token.

chevron-right
lockRequired scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired

Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.

If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.

Path parameters
timestampstring · date-timeRequired

The timestamp of the moment when you created the API key in the ISO 8601 compliant format.

Example: 2020-03-27T05:53:27.368Z
Responses
delete
/users/me/api-tokens/{timestamp}
200

Successful response

Last updated