GET
/
lists
curl --request GET \
  --url https://api.wapikit.com/api/lists
{
  "lists": [
    {
      "name": "<string>",
      "description": "<string>",
      "numberOfContacts": 123,
      "numberOfCampaignsSent": 123,
      "tags": [
        {
          "label": "<string>",
          "uniqueId": "<string>"
        }
      ],
      "uniqueId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "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

order
enum<string>

order by asc or desc

Available options:
asc,
desc

Response

200
application/json

list of contact lists

The response is of type object.

GET
/
lists
curl --request GET \
  --url https://api.wapikit.com/api/lists
{
  "lists": [
    {
      "name": "<string>",
      "description": "<string>",
      "numberOfContacts": 123,
      "numberOfCampaignsSent": 123,
      "tags": [
        {
          "label": "<string>",
          "uniqueId": "<string>"
        }
      ],
      "uniqueId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "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

order
enum<string>

order by asc or desc

Available options:
asc,
desc

Response

200
application/json

list of contact lists

The response is of type object.