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

Path Parameters

id
string
required

The id value of the list you want to get.

Response

200
application/json

gets a single list.

The response is of type object.