curl --request POST \
--url https://api.blaxel.ai/v0/users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"email": "jsmith@example.com"
}'
{
"createdAt": "<string>",
"updatedAt": "<string>",
"createdBy": "<string>",
"updatedBy": "<string>",
"email": "<string>",
"invitedBy": "<string>",
"role": "<string>",
"workspace": "<string>"
}
Invites a user to the workspace by email.
curl --request POST \
--url https://api.blaxel.ai/v0/users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"email": "jsmith@example.com"
}'
{
"createdAt": "<string>",
"updatedAt": "<string>",
"createdBy": "<string>",
"updatedBy": "<string>",
"email": "<string>",
"invitedBy": "<string>",
"role": "<string>",
"workspace": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Email of the user to invite
The body is of type object
.
successful operation
Pending invitation in workspace Time fields for Persistance Owner fields for Persistance
Was this page helpful?