Accounts
GET v3/accounts
Returns a list of all accounts available to the user.
This is the primary entry point for accessing the API. Most subsequent requests can be made using URLs contained in response bodies. For example:
[{
"isActive": true,
"accountId": "13434",
"webProperties": "https://api.conductor.com/v3/accounts/13434/web-properties",
"name": "Yoyodyne"
},
{
"isActive": false,
"accountId": "542239",
"webProperties": "https://api.conductor.com/v3/accounts/542239/web-properties",
"name": "Kahuna Airlines"
}]
The response is a JSON-encoded array of account objects, each having the attributes:
isActive | Boolean which indicates whether the account is active in Searchlight or not |
accountId | An opaque identifier string for the given account |
webProperties | The API URL of this account’s Web Property List |
name | The account name |
Try this endpoint with the interactive documentation.