Audit Trail Tokens API
Audit trail tokens are used to authenticate integrations pulling audit trail data, for example, using the HCP Terraform for Splunk app.
Generate a new token
POST /organizations/:organization_name/authentication-token?token=audit-trails
Parameter | Description |
---|---|
:organization_name | The name of the organization to generate a token for. |
Generates a new audit trails 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 audit trails token expires, in ISO 8601 format. If omitted or set to null the token will never expire. |
Sample Payload
Sample Request
Sample Response
Delete a token
DELETE /organizations/:organization/authentication-token?token=audit-trails
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