User Tokens API
List User Tokens
GET /users/:user_id/authentication-tokens
Parameter | Description |
---|---|
:user_id | The ID of the User. |
Use the Account API to find your own user ID.
The objects returned by this endpoint only contain metadata, and do not include the secret text of any authentication tokens. A token is only shown upon creation, and cannot be recovered later.
Note: You must access this endpoint with a user token, and it will only return useful data for that token's user account.
Status | Response | Reason |
---|---|---|
200 | JSON API document (type: "authentication-tokens" ) | The request was successful |
200 | Empty JSON API document (no type) | User has no authentication tokens, or request was made by someone other than the user |
404 | JSON API error object | User not found |
Query Parameters
This endpoint supports pagination with standard URL query parameters. Remember to percent-encode [
as %5B
and ]
as %5D
if your tooling doesn't automatically encode URLs. If neither pagination query parameters are provided, the endpoint will not be paginated and will return all results.
Parameter | Description |
---|---|
page[number] | Optional. If omitted, the endpoint will return the first page. |
page[size] | Optional. If omitted, the endpoint will return 20 user tokens per page. |
Sample Request
Sample Response
Show a User Token
GET /authentication-tokens/:id
Parameter | Description |
---|---|
:id | The ID of the User Token. |
The objects returned by this endpoint only contain metadata, and do not include the secret text of any authentication tokens. A token is only shown upon creation, and cannot be recovered later.
Note: You must access this endpoint with a user token, and it will only return useful data for that token's user account.
Status | Response | Reason |
---|---|---|
200 | JSON API document (type: "authentication-tokens" ) | The request was successful |
404 | JSON API error object | User Token not found, or unauthorized to view the User Token |
Sample Request
Sample Response
Create a User Token
POST /users/:user_id/authentication-tokens
Parameter | Description |
---|---|
:user_id | The ID of the User. |
Use the Account API to find your own user ID.
This endpoint returns the secret text of the created authentication token. A token is only shown upon creation, and cannot be recovered later.
Note: You must access this endpoint with a user token, and it will only create new tokens for that token's user account.
Status | Response | Reason |
---|---|---|
201 | JSON API document (type: "authentication-tokens" ) | The request was successful |
404 | JSON API error object | User not found or user unauthorized to perform action |
422 | JSON API error object | Malformed request body (missing attributes, wrong types, etc.) |
500 | JSON API error object | Failure during User Token creation |
Request Body
This POST endpoint requires a JSON object with the following properties as a request payload.
Properties without a default value are required.
Key path | Type | Default | Description |
---|---|---|---|
data.type | string | Must be "authentication-tokens" . | |
data.attributes.description | string | The description for the User Token. |
Sample Payload
Sample Request
Sample Response
Destroy a User Token
DELETE /authentication-tokens/:id
Parameter | Description |
---|---|
:id | The ID of the User Token to destroy. |
Note: You must access this endpoint with a user token, and it will only delete tokens for that token's user account.
Status | Response | Reason |
---|---|---|
204 | Empty response | The User Token was successfully destroyed |
404 | JSON API error object | User Token not found, or user unauthorized to perform action |
Sample Request