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 PIM Data

POST
https://test.v1.vertexapi.com/Inventory/PIM
The /inventory/pim endpoint returns comprehensive Product Information Management (PIM) data for all available products. This includes detailed technical specifications, physical dimensions, pricing information, and product images for catalog and integration purposes.

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

Responses

🟢200OK
application/json
OK
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://test.v1.vertexapi.com/Inventory/PIM' \
--header 'Authorization: Bearer <token>'
Response Response Example
[
    {
        "VertexSKU": "string",
        "deviceTitle": "string",
        "color": "string",
        "os": "string",
        "internalStorage": "string",
        "externalStorageMax": "string",
        "launchDate": "MM/DD/YYYY",
        "unspscCode": "string",
        "harmonizedCode": "string",
        "taaCompliant": true,
        "deviceWeight": "string",
        "deviceDimensions": "string",
        "hacRating": "string",
        "displayDescription": "string",
        "displaySize": "string",
        "bluetooth": "string",
        "memoryCardSlot": true,
        "battery": "string",
        "processor": "string",
        "cameraFront": "string",
        "cameraRear": "string",
        "cameraFrontMP": "string",
        "cameraRearMP": "string",
        "sim": "string",
        "esim": true,
        "ipRating": "string",
        "ram": "string",
        "retailBoxHeight": "string",
        "retailBoxLength": "string",
        "retailBoxWidth": "string",
        "palletHeight": "string",
        "palletLength": "string",
        "palletWidth": "string",
        "endOfLifeDate": "MM/DD/YYYY",
        "endOfLife": true,
        "UPC": "string",
        "MPN": "string",
        "Manufacturer": "string",
        "images": {
            "frontImage": "string",
            "rearImage": "string",
            "leftImage": "string",
            "rightImage": "string"
        },
        "prices": {
            "msrp": 0,
            "yourPrice": 0,
            "map": 0
        }
    }
]
Modified at 2025-09-06 20:42:12
Previous
Get Item Inventory
Next
Order Header
Built with