This API endpoint allows you to retrieve a list of collections. The endpoint is paginated.
OK response.
{- "page": 0,
- "page_size": 0,
- "filter": {
- "ou_category_id": [
- "string"
]
}
}
{- "records": [
- {
- "id": "76",
- "ou_id": "8ffa98a4-c607-4d90-a333-b79bf095a7fb",
- "name": "All Teams",
- "tags": [ ],
- "managers": [ ],
- "admins": [ ],
- "sections": [ ],
- "version": "1",
- "no_of_dashboards": 3,
- "path": "/All Teams",
- "ou_category_id": "ffaea171-ba57-4222-81b0-d26d3284c065",
- "default_dashboard_id": 0,
- "workspace_id": 34,
- "created_at": 1710173818740,
- "workflow_profile_id": "f1d1d2f2-bba6-4f19-92c2-fcd4e4fa8116",
- "workflow_profile_name": "DORA profile"
}, - {
- "id": "79",
- "ou_id": "e1dc905b-0eca-4c4d-ad49-a3ce396fe0ff",
- "name": "Frontend",
- "tags": [ ],
- "managers": [ ],
- "admins": [ ],
- "sections": [ ],
- "parent_ref_id": 76,
- "version": "2",
- "no_of_dashboards": 0,
- "path": "/All Teams/Frontend",
- "ou_category_id": "ffaea171-ba57-4222-81b0-d26d3284c065",
- "default_dashboard_id": 0,
- "workspace_id": 34,
- "created_at": 1710947467896
}
], - "count": 2,
- "_metadata": {
- "page_size": 100,
- "page": 0,
- "has_next": false,
- "total_count": 2
}
}
This API endpoint allows you to create a new collection.
OK response.
[- {
- "name": "string",
- "ou_category_id": "string",
- "parent_ref_id": "string",
- "sections": [
- {
- "id": "string",
- "integrations": {
- "property1": {
- "type": "string",
- "filters": { }
}, - "property2": {
- "type": "string",
- "filters": { }
}
}
}
]
}
]
{- "errors": [ ],
- "success": [
- 82
]
}
This API endpoint allows you to edit an existing collection.
OK response.
[- {
- "id": "string",
- "name": "string",
- "ou_category_id": "string",
- "parent_ref_id": "string",
- "sections": [
- {
- "id": "string",
- "integrations": {
- "property1": {
- "type": "string",
- "filters": { }
}, - "property2": {
- "type": "string",
- "filters": { }
}
}
}
]
}
]
{- "errors": [ ],
- "success": [
- 74
]
}
This API endpoint allows you to delete an existing collection.
The reference ID of the collection to be deleted. Multiple IDs can be included in the array to delete multiple collections in a single request.
OK response.
[- "string"
]
{- "message": "The collection(s) were successfully deleted."
}