Resend Invite
Resend a pending platform invitation email.
POST
/api/v1/users/{invite_id}/resend-inviteDescription
Resends the invitation email. Allowed after a 5-minute cooldown from the last send.
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer <access_token> | Yes |
| Content-Type | application/json | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| invite_id | number | Yes | Invitation record ID from list/get team users. |
Body Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| message | string | No | Optional custom message in the resent email. |
Example Request Body
{
"message": "Reminder: please accept your Unduit invitation"
}Response
Related Endpoints
Did this page help you?
Request
curl -X POST https://uat.unduit.com/api-exposed/api/v1/users/15/resend-invite \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{
"message": "Reminder: please accept your Unduit invitation"
}'Success Response
{
"message": "Invitation sent successfully.",
"invite_id": 15,
"email_sent": true,
"invitation": {
"invite_id": 15,
"email": "new.user@example.com",
"role": 3,
"role_name": "Requester",
"status": 0,
"status_name": "Pending",
"resend_flag": false
}
}