Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.blaxel.ai/v0/service_accounts \
--header 'Authorization: Bearer <token>'[
{
"client_id": "<string>",
"created_at": "<string>",
"description": "<string>",
"name": "<string>",
"updated_at": "<string>"
}
]Returns a list of all service accounts in the workspace.
curl --request GET \
--url https://api.blaxel.ai/v0/service_accounts \
--header 'Authorization: Bearer <token>'[
{
"client_id": "<string>",
"created_at": "<string>",
"description": "<string>",
"name": "<string>",
"updated_at": "<string>"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?