Skip to main content
GET
/
v1
/
projects
/
{projectId}
/
proposals
curl "https://nest.feather.mupeni.dev/v1/projects/proj_01hx.../proposals?status=pending" \
  -H "Authorization: Bearer <server_key>"
{
  "items": [
    {
      "id": "prop_01hx...",
      "flagId": "flag_01hx...",
      "environmentId": "env_01hx...",
      "status": "pending",
      "proposedConfig": { ... },
      "createdBy": "key_01hx...",
      "createdAt": "2024-04-10T14:00:00.000Z",
      "reviewedBy": null,
      "reviewedAt": null,
      "reviewNote": null
    }
  ],
  "nextCursor": null,
  "hasMore": false
}
Useful for a project-wide change request review queue.

Path parameters

projectId
string
required

Query parameters

status
"pending" | "approved" | "rejected"
Filter by status.
limit
number
Page size. 1–100, default 50.
cursor
number
Timestamp cursor for the next page.
curl "https://nest.feather.mupeni.dev/v1/projects/proj_01hx.../proposals?status=pending" \
  -H "Authorization: Bearer <server_key>"
{
  "items": [
    {
      "id": "prop_01hx...",
      "flagId": "flag_01hx...",
      "environmentId": "env_01hx...",
      "status": "pending",
      "proposedConfig": { ... },
      "createdBy": "key_01hx...",
      "createdAt": "2024-04-10T14:00:00.000Z",
      "reviewedBy": null,
      "reviewedAt": null,
      "reviewNote": null
    }
  ],
  "nextCursor": null,
  "hasMore": false
}