Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
User invite has been successfully resent.
curl --request POST \
--url https://{controlPlaneURL}/api/svc/v1/users/invite/resend \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"acceptInviteClientUrl": "<control plane url>/invite-accept",
"email": "<string>",
"clientId": "<string>"
}'
{
"link": "<string>"
}
Resend the invite to the user
curl --request POST \
--url https://{controlPlaneURL}/api/svc/v1/users/invite/resend \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"acceptInviteClientUrl": "<control plane url>/invite-accept",
"email": "<string>",
"clientId": "<string>"
}'
{
"link": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
User invite has been successfully resent.
Was this page helpful?