POST
/
api
/
svc
/
v1
/
users
/
invite
/
resend
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>"
}'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
acceptInviteClientUrl
string
required

Url to redirect when invite is accepted

Example:

"<control plane url>/invite-accept"

email
string
required

User email of user

clientId
string
required

Client id of user

Response

200
application/json
User invite has been successfully resent.

The response is of type object.