Account List
GET URL
GET v3/accounts
Description
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"
}]
Response
The response is a JSON-encoded array of account objects, each having the attributes:
accountId
Indicates the numerical identification string for the returned Conductor account
name
Indicates the name associated with the Conductor account
isActive
Indicates whether the account is active in Conductor or not
webProperties
The API URL of this account’s Web Property List endpoint.
Try this endpoint with the interactive documentation