GET
/
api
/
v2
/
customers
curl --location --request GET 'https://api.explo.co/api/v2/customers/?page_size=2&page=1' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>'
{
  "count": 10,
  "next": "https://api.explo.co/api/v2/customers/?page_size=2&page=2",
  "previous": null,
  "results": {
    "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"
    }]
  }
}

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

parent_provided_id
string

Filters customers to those with specified parent provided id.

hierarchy_level_name
string

Filters customers to those within the specified hierarchy level.

page
number

The result page number to request. Defaults to 1.

page_size
number

The result page size. Defaults to 20. The max is 1000

Response

count
number

The total number of results possible.

next
string

The url of the next page of results.

previous
string

The url of the previous page of results.

results
object

Response wrapper object. Contains the customers response field.

customers
object[]

The contents of each customer

curl --location --request GET 'https://api.explo.co/api/v2/customers/?page_size=2&page=1' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>'
{
  "count": 10,
  "next": "https://api.explo.co/api/v2/customers/?page_size=2&page=2",
  "previous": null,
  "results": {
    "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"
    }]
  }
}