Resend user invitation email

Resends the invitation email to a pending user with a new activation token. The previous token is automatically invalidated.

Path Parameters
  • id
    Type: stringFormat: uuid
    required

    User ID of the pending user

Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for post/users/{id}/resend-invite
curl https://api.gpcn.com/v1/users/123e4567-e89b-12d3-a456-426614174000/resend-invite \
  --request POST \
  --header 'X-API-Key: YOUR_SECRET_TOKEN'
{
  "success": true,
  "message": "",
  "data": {
    "message": "Invitation resent successfully",
    "expiresAt": "2026-01-30T20:45:00.000Z"
  },
  "meta": null
}