POST
/
open
/
workspaces
/
{workspaceId}
/
invites
/
{inviteId}
/
resend
curl --request POST \
  --url https://api.opnform.com/open/workspaces/{workspaceId}/invites/{inviteId}/resend \
  --header 'Authorization: Bearer <token>'
{
  "message": "Invite email resent successfully."
}

Resend Workspace Invite

Send the invitation email again to a pending workspace invite.

Authentication & Scope

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

Request

POST /open/workspaces/{workspaceId}/invites/{inviteId}/resend HTTP/1.1
Host: api.opnform.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.

{
  "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.

Authorizations

Authorization
string
header
required

Personal Access Token

Path Parameters

workspaceId
string
required
inviteId
string
required

Response

200
application/json

Invite resent

The response is of type object.