Merge · Schema

ItemFulfillmentBatchItemRequest

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
item_id string The third-party item ID for this model in the bulk create request
payload object
View JSON Schema on GitHub

JSON Schema

merge-itemfulfillmentbatchitemrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ItemFulfillmentBatchItemRequest",
  "title": "ItemFulfillmentBatchItemRequest",
  "type": "object",
  "properties": {
    "item_id": {
      "type": "string",
      "description": "The third-party item ID for this model in the bulk create request"
    },
    "payload": {
      "$ref": "#/components/schemas/ItemFulfillmentRequestRequest"
    }
  },
  "required": [
    "item_id",
    "payload"
  ]
}