curl --location --request POST 'https://test.v1.vertexapi.com/Orders' \
--header 'CustomerKey;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"custOrder": "Order1234",
"orderType": "New",
"endUserOrderNumber": "EndCustomerPO",
"shipMethod": "UPSG",
"orderDate": "2025-05-01",
"shipTo": "Vertex Wireless",
"shipAdd1": "500 Wegner Drive",
"shipAttention": "API User",
"shipCity": "West Chicago",
"shipState": "IL",
"shipZip": "60185",
"shipPhone": "6302936300",
"countryCode": "US",
"items": [
{
"lineNum": 1,
"vertexPart": "SA-PARTTEST-A001-GEGE",
"quantity": 1,
"customerPart": "YourPartNumber",
"price": 499.99,
"bidNumber": "SPA-Detail-123"
}
]
}'