FlxpointAPI Help CenterBeta

[Deprecated] Get Committed Stock For Purchase Order

gethttps://api.flxpoint.com/purchase-orders/{purchaseOrderId}/committed-stockDeprecated

Use this when you want to pull purchase order 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 purchase order

Request

Example request

get/purchase-orders/{purchaseOrderId}/committed-stock
curl -X GET "https://api.flxpoint.com/purchase-orders/{purchaseOrderId}/committed-stock" \
  -H "Accept: application/json" \
  -H "X-API-TOKEN: YOUR_TOKEN"

Responses

200OKapplication/json
array[CommittedStock]
inventoryVariantIdinteger (int64)
sourceIdinteger
purchaseOrderIdinteger
purchaseOrderItemIdinteger
quantityinteger
purchaseOrderItemQuantityinteger
this 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": "[Deprecated] Get Committed Stock For Purchase Order",
    "description": "Get committed stock for a purchase order",
    "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