curl --request GET \
--url https://api.blaxel.ai/v0/profile/invitations \
--header 'Authorization: Bearer <token>'
[
{
"email": "<string>",
"invitedAt": "<string>",
"invitedBy": {
"email": "<string>",
"family_name": "<string>",
"given_name": "<string>",
"sub": "<string>"
},
"role": "<string>",
"workspace": {
"displayName": "<string>",
"name": "<string>"
},
"workspaceDetails": {
"emails": [
"<any>"
],
"user_number": 123
}
}
]
Returns a list of all pending invitations in the workspace.
curl --request GET \
--url https://api.blaxel.ai/v0/profile/invitations \
--header 'Authorization: Bearer <token>'
[
{
"email": "<string>",
"invitedAt": "<string>",
"invitedBy": {
"email": "<string>",
"family_name": "<string>",
"given_name": "<string>",
"sub": "<string>"
},
"role": "<string>",
"workspace": {
"displayName": "<string>",
"name": "<string>"
},
"workspaceDetails": {
"emails": [
"<any>"
],
"user_number": 123
}
}
]
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?