GET
/
invitations
curl --request GET \
  --url https://api.gleap.io/v3/invitations \
  --header 'Authorization: Bearer <token>'
[
  {
    "updatedAt": "<string>",
    "createdAt": "<string>",
    "project": {
      "isValid": {},
      "createFromHexString": {},
      "createFromTime": {},
      "generate": {},
      "cacheHexString": "<any>",
      "prototype": "<string>"
    },
    "email": "<string>",
    "organisation": {
      "isValid": {},
      "createFromHexString": {},
      "createFromTime": {},
      "generate": {},
      "cacheHexString": "<any>",
      "prototype": "<string>"
    },
    "role": "<string>",
    "name": "<string>",
    "type": "organisation"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json
Ok

The response is of type object[].