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