Skip to main content
GET
/
api
/
orders
/
{order_id}
/
parts
Get order parts
curl --request GET \
  --url https://reit.connectors.aicoflow.com/api/orders/{order_id}/parts
{
  "success": true,
  "parts": [
    {
      "order_id": 123,
      "part_no": "<string>",
      "description": "<string>",
      "lead_no": "<string>",
      "order_no": "<string>",
      "row_id": "<string>",
      "part_id": "<string>",
      "qty": 123,
      "price_each": 123,
      "price_total": 123,
      "status": "<string>",
      "status_code": "<string>",
      "status_icon": "<string>",
      "order_date": "<string>",
      "delivery_date": "<string>",
      "eta_date": "<string>",
      "is_missing": 0,
      "is_to_order": 0,
      "is_ordered": 0,
      "is_delivered": 0,
      "is_backorder": 0,
      "is_mandatory": 0,
      "is_price_checked": 0
    }
  ],
  "total": 123,
  "message": ""
}

Path Parameters

order_id
integer
required

Response

List of parts with status information

Parts list response.

success
boolean
required
parts
PartModel · object[]
required
total
integer
required
message
string
default:""