PUT method to update an existing audience list.
Name | Description |
---|---|
account_id required | Account unique identifier |
id required | List unique identifier |
name | Name of the list |
description | Description of the list |
visibility | Visibility of the list |
PUT
/v2/account/:account_id/lists/:id
Accept: application/json
Authorization: Token token={account.secret}
Content-Type: application/json
{
"name": "Updated List",
"description": "Updated description",
"visibility": "private"
}
200
{
"id": "updated_list_id",
"name": "Updated List",
"description": "Updated description",
"visibility": "private"
}