get dashboard
GET
https://api.wexa.ai/dashboard/{projectID}
Last modified:2025-04-25 12:07:42
Retrieve Dashboard Overview by Project ID
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.wexa.ai/dashboard/' \
--header 'x-api-key: {{x-api-key}}'
Response Response Example
{
"_id": "67fdea9c0de4fb70696a0b0c",
"name": "Pulse",
"position": [
{
"tab_id": "67e1367cf4f366b0cff3c3d0",
"x": 0,
"y": 0,
"h": 25,
"w": 7,
"i": "67e1367cf4f366b0cff3c3d5",
"minW": 4,
"minH": 4
}
],
"tabs": [
{
"name": "Overview",
"id": "67e1367cf4f366b0cff3c3d0"
},
{
"name": "Analytics",
"id": "67e1367cf4f366b0cff3c3d1"
},
{
"name": "Reports",
"id": "67e1367cf4f366b0cff3c3d2"
}
],
"project_id": "67fdea40aac77be632954f13",
"components": [
{
"tab_id": "67e1367cf4f366b0cff3c3d0",
"component_type": "taskManager",
"user_query": null,
"title": "My Tasks",
"subTitle": "",
"component_id": "67e1367cf4f366b0cff3c3d5",
"resource": "default",
"table_id": null,
"process_buttons": [],
"button_title": null,
"coworker_id": null,
"column_keys": [],
"columns": [],
"icon": "clipboard-list",
"query": {
"aggregation_code": [
{
"$match": {
"projectID": "67fdea40aac77be632954f13"
}
},
{
"$facet": {
"running": [
{
"$match": {
"status": "running"
}
},
{
"$project": {
"_id": 1,
"name": 1,
"created_at": 1,
"status": 1
}
}
],
"completed": [
{
"$match": {
"status": "completed"
}
},
{
"$project": {
"_id": 1,
"name": 1,
"created_at": 1,
"status": 1
}
}
],
"ready": [
{
"$match": {
"status": "ready"
}
},
{
"$project": {
"_id": 1,
"name": 1,
"created_at": 1,
"status": 1
}
}
],
"failed": [
{
"$match": {
"status": "failed"
}
},
{
"$project": {
"_id": 1,
"name": 1,
"created_at": 1,
"status": 1
}
}
],
"paused": [
{
"$match": {
"status": "paused"
}
},
{
"$project": {
"_id": 1,
"name": 1,
"created_at": 1,
"status": 1
}
}
]
}
}
]
},
"data": [
{
"status": "running",
"data": []
},
{
"status": "completed",
"data": []
},
{
"status": "ready",
"data": []
},
{
"status": "failed",
"data": []
},
{
"status": "paused",
"data": []
}
]
}
],
"description": "Drag and drop widgets to customize your dashboard",
"coworker_id": null
}
Request
Path Params
projectID
string
required
Header Params
x-api-key
string
required
Example:
{{x-api-key}}
Responses
Modified at 2025-04-25 12:07:42