Skip to main content
PUT
/
organisations
/
{organisation_id}
/
invitations
/
{invitation_id}
/
resend
Resend Invitation
curl --request PUT \
  --url https://platform.versori.com/api/organisations/v1/organisations/{organisation_id}/invitations/{invitation_id}/resend \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "jsmith@example.com",
  "url": "<string>",
  "authUrl": "<string>",
  "inviteType": "transfer_ownership"
}'
{
  "id": "<string>",
  "email": "jsmith@example.com",
  "name": "<string>",
  "picture": "<string>",
  "accepted": true,
  "inviteType": "transfer_ownership",
  "expiresAt": "2023-11-07T05:31:56Z",
  "createdAt": "2023-11-07T05:31:56Z",
  "roles": [
    "<string>"
  ],
  "groupIDs": [
    "<string>"
  ]
}

Path Parameters

organisation_id
string
required
invitation_id
string
required

Body

application/json
email
string<email>
required
url
string<uri>
required
authUrl
string<uri>
required
inviteType
enum<string>
required
Available options:
transfer_ownership,
join_organisation

Response

OK

Invitation represents an invitation to join an Organisation. The invitation may be deleted if it is no longer wanted, or a new invitation email can be sent. Accepted invitations are automatically deleted.

id
string<ulid>
required
email
string<email>
required
name
string
required
picture
string<url>
required
accepted
boolean
required
inviteType
enum<string>
required
Available options:
transfer_ownership,
join_organisation
expiresAt
string<date-time>
createdAt
string<date-time>
roles
string[]

Roles are the list of role names to be granted to this Member at the organisation scope.

groupIDs
string[]

GroupIDs are the list of group IDs to be added to this Member.

I