Order and Inventory
Order and Inventory
  1. Orders
  • Orders
    • Create Order
      POST
    • Order Status
      POST
    • Order Fulfillment Detail
      POST
  • Inventory
    • Get Item Inventory
      POST
    • Get Item PIM Data
      POST
  • Schemas
    • Schemas
      • Order Header
      • Order Line
      • Item Inventory
      • Item PIM
  1. Orders

Order Fulfillment Detail

POST
https://test.v1.vertexapi.com/Orders/orderfulfillment
The /orders/orderfulfillment endpoint returns detailed fulfillment information for orders processed through the Vertex API.
By supplying either the Vertex Sales Order (SO) number or your order reference, you can retrieve shipment tracking data, carrier details, fulfillment dates, and item-level serial breakdowns.

Request

Authorization
OAuth 2.0
Client Credentials
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Token URL: https://auth.v1.vertexapi.com/oauth2/token
Refresh URL: https://auth.v1.vertexapi.com/oauth2/token
or
Body Params application/json

Examples

Responses

🟢200OK
application/json
Success
Body

Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://test.v1.vertexapi.com/Orders/orderfulfillment' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "order": "ORDER1234"
}'
Response Response Example
{
    "shipNotice": [
        {
            "vertexOrder": "string",
            "customerOrder": "string",
            "shipDate": "string",
            "shipmentDetails": {
                "carton": [
                    {
                        "UCC128": "string",
                        "tracking": "string",
                        "shipMethod": "string",
                        "shipCarrier": "string",
                        "lineDetails": [
                            {
                                "lineNum": "string",
                                "vertexPart": "string",
                                "vendorName": "string",
                                "upc": "string",
                                "customerPart": "string",
                                "quantityShipped": 0,
                                "serialDetails": [
                                    {
                                        "serialNumber": "string",
                                        "imei2": "string",
                                        "eSIM": "string",
                                        "mechanical": "string",
                                        "software": "string"
                                    }
                                ]
                            }
                        ]
                    }
                ]
            }
        }
    ]
}
Modified at 2025-09-06 20:40:44
Previous
Order Status
Next
Get Item Inventory
Built with