Get Fulfillment
Retrieves a single fulfillment by ID with optional field selection.
Last updated: April 9, 2026
Get Fulfillment
GET /siren/v1/fulfillments/{id}
Returns a single fulfillment by ID.
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
fields | string | core fields | Comma-separated list of fields to include |
include | string | — | Legacy: extended for all available fields |
Example
GET /siren/v1/fulfillments/5?fields=id,status,payoutCount,totalValue,payouts
{
"id": 5,
"status": "pending",
"payoutCount": 2,
"totalValue": 5000,
"payouts": [
{ "id": 20, "collaboratorId": 3, "value": 3000, "status": "unpaid" },
{ "id": 21, "collaboratorId": 7, "value": 2000, "status": "unpaid" }
]
}
Returns 404 if no record exists with that ID, or 500 on a database error.