GET /external/v1/initiativesList the lean Initiative catalog for customer dashboard mapping, including compact team names and IDs. Results are workspace-scoped and sorted by most recent update. Follow X-Has-More and advance offset by X-Limit to retrieve the complete catalog.
Requirements
Request
Parameters
| Name | Type | Description |
|---|---|---|
| limit | number | 1–100 results. Defaults to 20. |
| offset | number | Number of results to skip. |
| status | string | Exact Initiative status. |
| productId | uuid | Exact Product filter. |
| teamId | uuid | Return Initiatives assigned to this exact workspace team. |
Responses
Initiatives were retrieved.
Example Response
[
{
"id": "initiative-uuid",
"publicId": "INITIATIVE-42",
"name": "Unified scheduling",
"description": "Make scheduling consistent across locations.",
"status": "IN_PROGRESS",
"priority": "HIGH",
"workspaceId": "workspace-uuid",
"productId": "product-uuid",
"teams": [
{
"id": "team-uuid",
"name": "Core product"
}
],
"startDate": "2026-07-01",
"finishDate": null,
"createdAt": "2026-07-01T00:00:00Z",
"updatedAt": "2026-07-14T10:00:00Z"
}
]