FlxpointAPI Help CenterBeta

[Deprecated] Process Purchase Order

patchhttps://api.flxpoint.com/purchase-orders/{purchaseOrderId}/processedDeprecated

Use this when you want to update 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.

Update a Purchase Order as `Processed`. <br/> Only Purchase Orders in `Processing` status can be transitioned to `Processed`.

If the Purchase Order is already in `Processed` status, a 200 (OK) response will be returned.

Request

Example request

patch/purchase-orders/{purchaseOrderId}/processed
curl -X PATCH "https://api.flxpoint.com/purchase-orders/{purchaseOrderId}/processed" \
  -H "Accept: application/json" \
  -H "X-API-TOKEN: YOUR_TOKEN"

Responses

200OK

No schema documented for this status.

400Bad Request

No schema documented for this status.

401Unauthorized

No schema documented for this status.

404Not Found

No schema documented for this status.

OpenAPI fragment
{
  "patch": {
    "summary": "[Deprecated] Process Purchase Order",
    "description": "Update a Purchase Order as `Processed`. <br/>\nOnly Purchase Orders in `Processing` status can be transitioned to `Processed`.\n\nIf the Purchase Order is already in `Processed` status, a 200 (OK) response will be returned.",
    "parameters": [],
    "responses": {
      "200": {
        "description": "OK"
      },
      "400": {
        "description": "Bad Request"
      },
      "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