GET
/
integrations
cURL
curl --request GET \
  --url https://api.wapikit.com/api/integrations
{
  "integrations": [
    {
      "uniqueId": "<string>",
      "name": "<string>",
      "type": "<string>",
      "slug": "<string>",
      "icon": "<string>",
      "description": "<string>",
      "isPremium": true,
      "createdAt": "2023-11-07T05:31:56Z",
      "status": "Active"
    }
  ],
  "paginationMeta": {
    "page": 123,
    "per_page": 123,
    "total": 123
  }
}

Query Parameters

page
integer

number of records to skip

per_page
integer

max number of records to return per page

order
enum<string>

order by asc or desc

Available options:
asc,
desc
status
enum<string>

status of the integration

Available options:
Active,
Inactive

Response

200
application/json

list of integrations

The response is of type object.