Ordoro · Schema

Add a shipping method to a mapped supplier method

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
active boolean
requested_shipping_method object The requested shipping method on an Order to be mapped to a determinate shipping method
mapped_shipping_method string For FBA, must be one of the following: ['Expedited', 'Priority', 'Standard']
mapped_shipping_account object
mapped_shipping_carrier object
View JSON Schema on GitHub

JSON Schema

ordoro-post_supplier_shipping_method-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-post_supplier_shipping_method-schema.json",
  "title": "Add a shipping method to a mapped supplier method",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "active": {
      "type": "boolean"
    },
    "requested_shipping_method": {
      "description": "The requested shipping method on an Order to be mapped to a determinate shipping method",
      "default": "",
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "mapped_shipping_method": {
      "description": "For FBA, must be one of the following: ['Expedited', 'Priority', 'Standard']",
      "type": "string"
    },
    "mapped_shipping_account": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "mapped_shipping_carrier": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    }
  },
  "required": [
    "mapped_shipping_method",
    "requested_shipping_method"
  ]
}