Skip to content

List API tokens scoped to this organization

GET
/api/v2/organizations/{organization}/tokens
curl --request GET \
--url https://dashboard.quantcdn.io/api/v2/organizations/test-org/tokens \
--header 'Authorization: Bearer <token>'
organization
required
string

Organization identifier

Example
test-org

The request has succeeded.

Media typeapplication/json
Array<object>
object
id
integer
name
string
last_used
string format: date-time
nullable
created_at
string format: date-time
Example
[
{
"id": 42,
"name": "My deploy token"
}
]

Access is forbidden.

Media typeapplication/json
object
message
required

Error message

string
error
required

Error flag

boolean
Example
{
"message": "The requested resource was not found",
"error": true
}