Resend Invitation
post
/v1/orgs/{org_id}/invitations/{invitation_id}/resendPart of Org Members.
Requires admin or owner role. Rotates the invitation token, extends its expiry, and re-sends the email.
Authentication
Authenticate in any one of these ways — not all of them:
- API key in the
X-API-Keyheader. - Bearer token in the
Authorizationheader.
Path parameters
| Name | Type | Description |
|---|---|---|
org_idrequired | string | Org Id |
invitation_idrequired | string | Invitation Id |
Example request
curl
curl -X POST "https://api.robosystems.ai/v1/orgs/{org_id}/invitations/{invitation_id}/resend" \
-H "X-API-Key: $ROBOSYSTEMS_API_KEY"Responses
200 Successful Response
| Field | Type | Description |
|---|---|---|
idrequired | string | |
org_idrequired | string | |
emailrequired | string | |
rolerequired | OrgRole | One of: |
statusrequired | string | |
invited_by_user_idrequired | string | |
invited_by_namerequired | string | |
created_atrequired | string (date-time) | |
expires_atrequired | string (date-time) | |
is_expiredrequired | boolean | |
tokenoptional | string | Test-support only: the raw invite token. Populated ONLY when AUTH_INVITE_TOKEN_IN_RESPONSE is enabled in a non-production environment; always null in production. Lets automated authorization tests complete the invite -> register flow without email interception. |
| Status | Meaning |
|---|---|
| 400 | Invalid request |
| 401 | Authentication required |
| 403 | Access denied |
| 404 | Resource not found |
| 422 | Validation Error |
| 429 | Rate limit exceeded |
| 500 | Internal server error |
| 501 | Feature not enabled |