Customer API
Get all customers
GET

/api/customers/

Explo-Authorization*
curl --request GET \
  --url https://api.explo.co/api/customers/ \
  --header 'Explo-Authorization: <explo-authorization>'

This endpoint gets all of your customers. This list will be filtered to the customers your API token has access to.

Response

success
number

Indicates whether the call was successful. 1 if successful, 0 if not.

Customers
object[]

The contents of each customer

curl --location --request GET 'https://api.explo.co/api/customers/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>'
{
  "success": 1,
  "new_customer": true,
  "customers": [{
    "token": "<customer_token_to_auth_dashboard>",
    "name": "Example 1",
    "provided_id": "example_1",
    "is_demo_group": false,
    "emails": ["example@example.com"],
    "properties": { "filterValue": "value" },
    "computed_properties": { "filterValue": "value" },
    "parent_schema_datasource_mapping": {"40": "213": "134": 386"},
    "computed_parent_schema_datasource_mapping": {"40": "213": "134": 386"}
  }, {
    "token": "<customer_token_to_auth_dashboard>",
    "name": "Example 2",
    "provided_id": "example_2",
    "is_demo_group": false,
    "emails": ["example2@example.com"],
    "properties": { "filterValue": "value" },
    "computed_properties": { "filterValue": "value" },
    "parent_schema_datasource_mapping": {"40": "213": "134": 386"},
    "computed_parent_schema_datasource_mapping": {"40": "213": "134": 386"}
  }]
}