POST method to create a new Audience list.
Name | Description |
---|---|
account_id required | Account unique identifier |
name required | Name of the list |
description | Description of the list |
visibility | Visibility of the list |
POST
/v2/account/:account_id/lists
Accept: application/json
Authorization: Token token={account.secret}
Content-Type: application/json
{
"name": "Project Ideas",
"description": "List of project ideas",
"visibility": "public"
}
201
{
"id": "new_list_id",
"name": "Project Ideas",
"description": "List of project ideas",
"visibility": "public"
}