List partner submissions (admin)
Coming soon
The v2 MCP API is in preview and not yet generally available. These pages document its tools and request/response shapes; live data access is limited to enrolled organizations until v2 is released.
List partner submissions owned by the caller's organization. Supports filtering by state, asset type, slug, and date range; cursor pagination. Requires an admin-scoped API key.
Parameters
| Name | Type | Default | Description |
|---|---|---|---|
state | string | - | |
assetType | string | - | |
slug | string | - | |
createdAfter | string | - | |
createdBefore | string | - | |
limit | integer | 25 | |
cursor | string | - |
Response Format
| Field | Type | Description |
|---|---|---|
submissions | array | Submissions page (up to limit items), ordered by (createdAt DESC, id DESC). Use nextCursor to fetch the next page. |
submissions[].id | string | |
submissions[].slug | string | |
submissions[].assetType | string | |
submissions[].state | string | |
submissions[].aiVerdict | any | Reconciled AI-review verdict matching what admin_validate_submission would return, or null when no review has run (or the parent summary was cleared by a re-submit). |
submissions[].createdAt | string | |
submissions[].updatedAt | string | |
submissions[].publishedBlueprintId | string | null | Non-null only when state='approved' and materialization has completed. |
submissions[].lastRejectionReason | string | null | Set when state='rejected'. Surfaces the human-readable reason persisted on the row. |
submissions[].nextAction | string | Derived hint for the caller's next call. Stable contract — see tool-reference docs for the catalog of strings. |
nextCursor | string | null | Opaque cursor for the next page; null when no more results. |