Ordoro · Schema

shipper_canada_post_vendor_config

Canada Post Shipper configuration information

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
customer_number string
username string
password string
contract_id boolean
payment_method string
View JSON Schema on GitHub

JSON Schema

ordoro-shipper_canada_post_vendor_config-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-shipper_canada_post_vendor_config-schema.json",
  "title": "shipper_canada_post_vendor_config",
  "type": "object",
  "definitions": {
    "required_to_create": {
      "required": [
        "customer_number",
        "username",
        "password"
      ]
    },
    "required_in_response": {
      "required": [
        "customer_number",
        "username",
        "password",
        "contract_id",
        "payment_method"
      ]
    }
  },
  "description": "Canada Post Shipper configuration information",
  "properties": {
    "customer_number": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "password": {
      "type": "string"
    },
    "contract_id": {
      "type": "boolean"
    },
    "payment_method": {
      "type": "string",
      "enum": [
        "Account",
        "CreditCard"
      ],
      "default": "Account"
    }
  }
}