Order and Inventory
Order and Inventory
  1. Inventory
  • 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. Inventory

Get Item Inventory

POST
https://test.v1.vertexapi.com/Inventory
The /inventory endpoint provides a real-time list of currently available products. Each item in the response includes a VertexSKU, which is required when submitting orders to the /orders endpoint.
For partners configured with dedicated or customer-owned inventory, an optional CustomerKey header can be provided to filter results specific to that allocation. The CustINV flag in the response indicates whether an item is part of customer-owned or dedicated inventory "T" or shared/general inventory "F".

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
Header Params

Responses

🟢200OK
application/json
OK
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://test.v1.vertexapi.com/Inventory' \
--header 'CustomerKey;' \
--header 'Authorization: Bearer <token>'
Response Response Example
[
    {
        "MPN": "string",
        "UPC": "string",
        "VertexSKU": "string",
        "QuantityOnHand": 0,
        "QuantityOnOrder": 0,
        "CustINV": true
    }
]
Modified at 2025-09-06 20:39:56
Previous
Order Fulfillment Detail
Next
Get Item PIM Data
Built with