Get Committed Stock For Fulfillment Request
get
https://api.flxpoint.com/fulfillment-requests/{fulfillmentRequestId}/committed-stockUse this when you want to pull fulfillment request data through the API.
🔑 X-API-TOKEN⏱ 2 req/sToken: Account · Source · Channel
This page explains the endpoint. To send a live test request, use the interactive tester in Stoplight or your own Postman / HTTP client.
Get committed stock for a fulfillment request
Request
Example request
get
/fulfillment-requests/{fulfillmentRequestId}/committed-stockcurl -X GET "https://api.flxpoint.com/fulfillment-requests/{fulfillmentRequestId}/committed-stock" \
-H "Accept: application/json" \
-H "X-API-TOKEN: YOUR_TOKEN"Responses
200OKapplication/json
array[CommittedStock]
inventoryVariantIdinteger (int64)sourceIdintegerpurchaseOrderIdintegerpurchaseOrderItemIdintegerquantityintegerpurchaseOrderItemQuantityintegerthis is set equal to purchase order item quantity. This is used to compare with purchase order item quantity and figure out any quantity change.
committedAtstring (date-time)updatedAtstring (date-time)Example response
[
{
"inventoryVariantId": 0,
"sourceId": 0,
"purchaseOrderId": 0,
"purchaseOrderItemId": 0,
"quantity": 0,
"purchaseOrderItemQuantity": 0,
"committedAt": "2026-04-20T00:00:00Z",
"updatedAt": "2026-04-20T00:00:00Z"
}
]401Unauthorized
No schema documented for this status.
404Not Found
No schema documented for this status.
OpenAPI fragment
{
"get": {
"summary": "Get Committed Stock For Fulfillment Request",
"description": "Get committed stock for a fulfillment request",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CommittedStock"
}
}
}
}
},
"401": {
"description": "Unauthorized"
},
"404": {
"description": "Not Found"
}
}
}
}Ready to run it? Send the curl from your terminal or Postman, or use the interactive tester in Stoplight.Open in Stoplight