Skip to main content

Action: Retrieve all the lists in your account

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)

Example of the returned message:

{
    "status":"Success",
    "account_lists":[
        "List name 1",
        "List name 2"
    ]
}
Did this answer your question?