Get

Get Team Dashboards

GET https://api.explo.co/api/dashboard

Headers

Name
Type
Description

Explo-Authorization*

String

API authorization token which is unique to your team. You can access this in the Developers tab in your account.

{
    // Response
}

Response field descriptions

Field Name

Type

Description

success

number

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

dashboards

array

Array of dashboards

Dashboard Type

Field Name

Type

Description

team_id

number

Your team ID

name

string

Name of dashboard

embed_id

string

ID of the dashboard for embedding

attributes

array

Attribute values assigned to dashboard

Attribute Type

Field Name

Type

Description

attribute

string

The name of the attribute

value

string

The value assigned for the attribute

Example Request and Response

curl --location --request GET 'https://api.explo.co/api/dashboard/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>' 
{
    "success": 1,
    "dashboards": [
        {
            "team_id": 1,
            "name": "Example Dashboard",
            "embed_id": "vcjTgL2wdX",
            "attributes": [
                {
                    "attribute": "Team",
                    "value": "Engineering"
                }
            ]
        },
        {
            "team_id": 1,
            "name": "Production Dashboard",
            "embed_id": "JQvCTLT76V",
            "attributes": [
                {
                    "attribute": "Status",
                    "value": "Ready"
                }, 
                {
                    "attribute": "Team",
                    "value": "Marketing"
                }
            ]
        },
    ]
}

Last updated

Was this helpful?