Clusters
Applications
Models
Artifacts
Prompts
Secret Groups
Model Deployments
Users
Personal Access Tokens
Virtual Accounts
Users
Invite User
Invite a user to the tenant
POST
/
api
/
svc
/
v1
/
users
/
invite
curl --request POST \
--url https://{controlPlaneURL}/api/svc/v1/users/invite \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"acceptInviteClientUrl": "<control plane url>/invite-accept",
"email": "<string>"
}'
{}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
User has been successfully invited.
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://{controlPlaneURL}/api/svc/v1/users/invite \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"acceptInviteClientUrl": "<control plane url>/invite-accept",
"email": "<string>"
}'
{}