Ordoro · Schema

shipper_endicia_vendor_config

Endicia Shipper configuration information

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
account_id string
passphrase string
challenge_question string
challenge_answer string
is_free boolean
web_password object
confirmation_number string
View JSON Schema on GitHub

JSON Schema

ordoro-shipper_endicia_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_endicia_vendor_config-schema.json",
  "title": "shipper_endicia_vendor_config",
  "type": "object",
  "definitions": {
    "required_to_create": {
      "required": [
        "account_id",
        "passphrase"
      ]
    },
    "required_in_response": {
      "required": [
        "account_id",
        "web_password",
        "passphrase",
        "is_free",
        "challenge_question",
        "challenge_answer"
      ]
    }
  },
  "description": "Endicia Shipper configuration information",
  "properties": {
    "account_id": {
      "type": "string"
    },
    "passphrase": {
      "type": "string"
    },
    "challenge_question": {
      "type": "string"
    },
    "challenge_answer": {
      "type": "string"
    },
    "is_free": {
      "type": "boolean",
      "default": false
    },
    "web_password": {
      "default": null,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "confirmation_number": {
      "type": "string"
    }
  }
}