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>"
}'
{}
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>"
}'
{}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
User invite has been successfully resent.
The response is of type object
.
Was this page helpful?