Shippo · Schema

CarrierAccountCreateRequest

EcommerceLabelsLogisticsReturnsShippingTracking

Properties

Name Type Description
carrier string
account_id string
parameters object
active boolean
View JSON Schema on GitHub

JSON Schema

shippo-carrieraccountcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CarrierAccountCreateRequest",
  "title": "CarrierAccountCreateRequest",
  "type": "object",
  "required": [
    "carrier",
    "account_id"
  ],
  "properties": {
    "carrier": {
      "type": "string"
    },
    "account_id": {
      "type": "string"
    },
    "parameters": {
      "type": "object"
    },
    "active": {
      "type": "boolean"
    }
  }
}