Organization Token API
Generate a new organization token
POST /organizations/:organization_name/authentication-token
Parameter | Description |
---|---|
:organization_name | The name of the organization to generate a token for. |
Generates a new organization API token, replacing any existing token.
Only members of the owners team, the owners team API token, and the organization API token can access this endpoint.
This endpoint returns the secret text of the new authentication token. You can only access this token when you create it and can not recover it later.
Status | Response | Reason |
---|---|---|
201 | JSON API document (type: "authentication-tokens" ) | Success |
404 | JSON API error object | User not authorized |
Request Body
This POST endpoint requires a JSON object with the following properties as a request payload.
Key path | Type | Default | Description |
---|---|---|---|
data.type | string | Must be "authentication-token" . | |
data.attributes.expired-at | string | null | The UTC date and time that the Organization Token will expire, in ISO 8601 format. If omitted or set to null the token will never expire. |
Sample Payload
Sample Request
Sample Response
Delete the organization token
DELETE /organizations/:organization/authentication-token
Parameter | Description |
---|---|
:organization_name | Which organization's token should be deleted. |
Only members of the owners team, the owners team API token, and the organization API token can access this endpoint.
Status | Response | Reason |
---|---|---|
204 | No Content | Success |
404 | JSON API error object | User not authorized |
Sample Request