GET /external/v1/ideasGet a bounded page of potential solutions and features tracked as ideas.
Requirements
Request
Parameters
| Name | Type | Description |
|---|---|---|
| limit | number | Maximum number of items to return (default: 20, maximum: 100) |
| offset | number | Number of items to skip (default: 0) |
| sourceKey | string | Exact stable source namespace to match |
| externalId | string | Exact source-record identifier to match |
| integrationId | uuid | Exact connected integration identifier to match |
Responses
List of ideas retrieved. Pagination metadata is returned in X-Total-Count, X-Limit, X-Offset, and X-Has-More headers.
Example Request
/external/v1/ideascurl -X GET https://zentrik.ai/api/external/v1/ideas?limit=10 \
-H 'Authorization: Bearer YOUR_API_KEY'Example Response
[
{
"id": "uuid",
"name": "Implement one-click checkout",
"description": "Reduce friction by storing user preferences...",
"status": "New"
}
]