This will allow you to get all the lists from the account.
| Type | Parameters | Values |
| POST | cmd* | retrieve_account_lists |
* Required fields Here is an example:
'actions' => [
'0' => [
'cmd' => 'retrieve_account_lists'
]
]Here are the results returned by the request:
| Parameters | Values |
| account_lists | String (JSON encoded array containing the names of all the lists in your account, empty array if no lists) |
{
"status":"Success",
"account_lists":[
"List name 1",
"List name 2"
]
}