SSharaFormsDocs
Workspace Users

Resend Workspace Invite

Send the invitation email again to a pending workspace invite.

POST/open/workspaces/{workspaceId}/invites/{inviteId}/resend

Send the invitation email again to a pending workspace invite.

#Authentication & Scope

Requires workspace-users-write ability and admin privileges in the workspace.

#Request

http
POST /open/workspaces/{workspaceId}/invites/{inviteId}/resend HTTP/1.1
Host: api.sharaforms.com
Authorization: Bearer <token>

#Path Parameters

ParameterTypeDescription
workspaceIdnumberID of the workspace.
inviteIdnumberID of the invite to resend.

Request body is empty.

#Response

200 OK – Confirmation message.

json
{
  "message": "Invite email resent successfully."
}

Possible errors:

  • Invite not found for this workspace.
  • Invite already accepted.

Both are returned with status 400 (wrapped in the errors format).

403 Forbidden – Token lacks workspace-users-write or insufficient privileges.