...
Service | Request Parameters | Response Body | Notes |
---|---|---|---|
POST /auth/v1/userGeneratedToken | Body: AccessTokenGenerationRequest {
} | AccessTokenGenerationResponse {
} | Generates a token that users can copy and paste into the command line client. |
GET /auth/v1/userGeneratedToken | None | Paginated list of AccessTokenRecord: {
} | Retrieves a paginated list of the user’s generated access tokens. |
DELETE /auth/v1/userGeneratedTokenParam (only one is required)/{id} | Path param: id: the id of the token to delete OR token: the token to delete | None | Revokes the token if it’s a valid access token. |
DELETE /auth/v1/userGeneratedToken | None | None | Revokes all personal access tokens. |
How to use a personal access token
...