Audience List

List all lists

GET method to list all audience lists associated with an account.

Parameters

Name Description
account_id required Account unique identifier

Request

Route
GET 
/v2/account/:account_id/lists
Headers
Accept: application/json 
Authorization: Token token={account.secret}
Content-Type: application/json

Response

Status
200
Body
{
  "lists": [
    {
      "id": "list1_id",
      "name": "First List",
      "description": "Description of the first list",
      "created_at": "2024-04-17T12:00:00Z",
      "visibility": "public"
    },
    {
      "id": "list2_id",
      "name": "Second List",
      "description": "Description of the second list",
      "created_at": "2024-04-17T12:00:00Z",
      "visibility": "private"
    }
  ]
}