v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
System Accounts - Access Tokens

Update System Account Access Token

Updates the specified access token. Returns a 409 if the updated name is the same as another token belonging to the specified system user.

patch/v3/system-accounts/{accountId}/access-tokens/{tokenId}

Request body

namestring required

Name of the system account access token.

Response

A response including a single system account access token.

idstring uuid

ID of the system account access token.

namestring

Name of the system account access token.

created_atstring date-time

Timestamp of when the system account access token was created.

updated_atstring date-time

Timestamp of when the system account access token was last updated.

expires_atstring date-time

Timestamp of when the system account access token will expire.

last_used_atstring date-time

Timestamp of when the system account access token was last used.

Example response

{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "name": "Sample Access Token",
  "created_at": "2022-08-01T14:16:09Z",
  "updated_at": "2022-08-02T08:35:49Z",
  "expires_at": "2022-12-31T12:52:23Z",
  "last_used_at": "2022-10-24T13:05:42Z"
}