Resend Invite

Resend a pending platform invitation email.

POST
/api/v1/users/{invite_id}/resend-invite

Description

Resends the invitation email. Allowed after a 5-minute cooldown from the last send.

Request

Headers

HeaderValueRequired
AuthorizationBearer <access_token>Yes
Content-Typeapplication/jsonYes

Path Parameters

ParameterTypeRequiredDescription
invite_idstringYesInvitation record pass the full value from the api response in path parameters.

Body Parameters

ParameterTypeRequiredDescription
messagestringNoOptional custom message in the resent email.

Example Request Body

{
  "message": "Reminder: please accept your Unduit invitation"
}

Response

FieldTypeDescription
successbooleanWhether the request succeeded.
messagestringHuman-readable confirmation.
invite_idstringOpaque invitation record ID.
email_sentbooleanWhether the invitation email was sent.
invitationobjectUpdated invitation record.
invitation.idstring | nullUser ID when the invitee has a registered account; null for pending invites.
invitation.emailstringUser or invitee email address.
invitation.namestring | nullDisplay name when known.
invitation.countrystringCountry code.
invitation.rolenumberCorporate role: 1=Department head, 2=Manager, 3=Requester.
invitation.role_namestringHuman-readable role label.
invitation.account_statusstringActive, Inactive, or Pending.
invitation.is_blockednumber1 when the account is blocked/deactivated; 0 otherwise.
invitation.is_default_userbooleanTrue for the company's default Unduit admin user.

Related Endpoints

Did this page help you?