Ordoro · Schema

post_shipper_base

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
vendor string The vendor of shipper.
hidden_shipping_methods array A list of shipping methods per shipper type that can be excluded from retrieved rates
name string The display name of this shipper.
View JSON Schema on GitHub

JSON Schema

ordoro-post_shipper_base-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_shipper_base-schema.json",
  "title": "post_shipper_base",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "vendor": {
      "description": "The vendor of shipper.",
      "type": "string",
      "enum": [
        "amazon",
        "australia_post"
      ]
    },
    "hidden_shipping_methods": {
      "description": "A list of shipping methods per shipper type that can be excluded from retrieved rates",
      "items": {},
      "type": "array"
    },
    "name": {
      "description": "The display name of this shipper.",
      "type": "string"
    }
  },
  "required": [
    "vendor"
  ]
}