Audience List

Create a new List

POST method to create a new Audience list.

Parameters

Name Description
account_id required Account unique identifier
name required Name of the list
description Description of the list
visibility Visibility of the list

Request

Route
POST 
/v2/account/:account_id/lists
Headers
Accept: application/json 
Authorization: Token token={account.secret}
Content-Type: application/json
Body
{
  "name": "Project Ideas",
  "description": "List of project ideas",
  "visibility": "public"
}

Response

Status
201
Body
{
  "id": "new_list_id",
  "name": "Project Ideas",
  "description": "List of project ideas",
  "visibility": "public"
}