Skip to main content
GET
/
organisations
/
{organisation_id}
/
invitations
Get Invitations
curl --request GET \
  --url https://platform.versori.com/api/organisations/v1/organisations/{organisation_id}/invitations \
  --header 'Authorization: Bearer <token>'
[
  {
    "totalCount": 123,
    "next": "<string>",
    "prev": "<string>",
    "invitations": [
      {
        "id": "<string>",
        "email": "[email protected]",
        "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>"
        ]
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organisation_id
string
required

Response

OK

totalCount
integer
next
string
prev
string
invitations
object[]