Filters customers to those with specified parent provided id.
Filters customers to those within the specified hierarchy level.
Response
Indicates whether the call was successful. 1 if successful, 0 if not.
The contents of each customer
Show Toggle object
Show Toggle object
The customer token (customerToken or CUSTOMER_TOKEN) that will be used to identify which customer
is viewing the dashboard. You should save this on your end to use when rendering an embedded
dashboard by passing this token into the web component or iframe. Example usage
here.
The display name you provided for your customer in Explo.
The ID you use to identify this customer in your database that you provided. This is also the ID
you will use to reference your customer in Explo queries or access your customer via the API. For
more information on example usage, check out this section.
An array of email addresses you provided for your customer.
An array of group tag names that have been assigned to this customer.
The name of the assigned hierarchy level.
If present, the name of the assigned data visibility group.
True if this customer is a demo customer, which means that data panels will include a demo
watermark for the customer. Demo customers do not count towards paid customers.
A set of key-value pairs assigned to this customer. These will be accessible through variables in
the dashboards and SQL editor. More information on properties can be found in this
section.
A properties object based on the provided properties of this customer and any inherited properties
from parent customers.
A set of key-values pairs that map a schema id to the data source that this customer loads data
from. For more information on schemas and data sources, check out this
section.
A schema datasource mapping object based on the parent_schema_datasource_mapping of the customer
and any inherited parent_schema_datasource_mapping from parent customers.
Copy
Ask AI
curl --location --request GET 'https://api.explo.co/api/customers/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>'
Copy
Ask AI
{
"success": 1,
"new_customer": true,
"customers": [{
"token": "<customer_token_to_auth_dashboard>",
"name": "Example 1",
"provided_id": "example_1",
"is_demo_group": false,
"emails": ["[email protected]"],
"group_tags": ["designers", "engineers"],
"properties": { "filterValue": "value" },
"computed_properties": { "filterValue": "value" },
"access_group": "Development",
"parent_schema_datasource_mapping": {"40": "213": "134": "386"},
"computed_parent_schema_datasource_mapping": {"40": "213": "134": "386"},
"hierarchy_level": "Level 1"
}, {
"token": "<customer_token_to_auth_dashboard>",
"name": "Example 2",
"provided_id": "example_2",
"is_demo_group": false,
"emails": ["[email protected]"],
"group_tags": [],
"properties": { "filterValue": "value" },
"computed_properties": { "filterValue": "value" },
"access_group": "Production",
"parent_schema_datasource_mapping": {"40": "213": "134": "386"},
"computed_parent_schema_datasource_mapping": {"40": "213": "134": "386"},
"hierarchy_level": "Level 2"
}]
}