curl --request GET \
--url https://api.blaxel.ai/v0/users \
--header 'Authorization: Bearer <token>'
[
{
"accepted": true,
"email": "<string>",
"email_verified": true,
"family_name": "<string>",
"given_name": "<string>",
"role": "<string>",
"sub": "<string>"
}
]
Returns a list of all users in the workspace.
curl --request GET \
--url https://api.blaxel.ai/v0/users \
--header 'Authorization: Bearer <token>'
[
{
"accepted": true,
"email": "<string>",
"email_verified": true,
"family_name": "<string>",
"given_name": "<string>",
"role": "<string>",
"sub": "<string>"
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
successful operation
The response is of type object[]
.
Was this page helpful?