GetPending

GET /api/account-invite

Headers

  • Specify effective organization_id for Admin and Group Organization Admins. This is a global header for all endpoints only taken into consideration when it makes sense (it won't be used in Auth, for example)

Responses

GET /api/account-invite
curl \
 -X GET https://api-dev.gatego.io:443/api/account-invite \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "organization_id": 42,
    "sender_account_name": "string",
    "sender_account_organization_name": "string",
    "target_can_view_carrier_ids": [
      42
    ],
    "target_can_view_other_carriers": true,
    "target_carrier_id": 42,
    "target_email": "string",
    "target_role": "string",
    "target_yard_id": 42,
    "target_yard_name": "string"
  }
]