Urban Outfitters · JSON Structure

Marketplace Api Inventory Update Response Structure

Result of inventory update

Type: object Properties: 3
RetailFashionApparelEcommerceAffiliateMarketplaceFortune 1000

InventoryUpdateResponse is a JSON Structure definition published by Urban Outfitters, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

updated failed results

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/urban-outfitters/refs/heads/main/json-structure/marketplace-api-inventory-update-response-structure.json",
  "name": "InventoryUpdateResponse",
  "description": "Result of inventory update",
  "type": "object",
  "properties": {
    "updated": {
      "type": "int32",
      "description": "Number of successfully updated SKUs",
      "example": 2
    },
    "failed": {
      "type": "int32",
      "description": "Number of failed updates",
      "example": 0
    },
    "results": {
      "type": "array",
      "description": "Per-SKU update results",
      "items": {
        "type": "object",
        "properties": {
          "sku": {
            "type": "string",
            "example": "UO-BRAND-TEE-001"
          },
          "status": {
            "type": "string",
            "example": "updated"
          },
          "quantity": {
            "type": "int32",
            "example": 300
          }
        }
      }
    }
  }
}