GET
/
organization
/
invites
curl --request GET \
  --url https://api.wapikit.com/api/organization/invites
{
  "invites": [
    {
      "uniqueId": "<string>",
      "email": "<string>",
      "accessLevel": "Owner",
      "createdAt": "2023-11-07T05:31:56Z",
      "status": "Pending",
      "organizationName": "<string>"
    }
  ],
  "paginationMeta": {
    "page": 123,
    "per_page": 123,
    "total": 123
  }
}

Query Parameters

page
integer
required

number of records to skip

per_page
integer
required

max number of records to return per page

sortBy
enum<string>

sorting order

Available options:
asc,
desc

Response

200
application/json

organization invites list

The response is of type object.