Ordoro · Schema

Account Balance Response Schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
apv_balance number
balance number
daily_purchase_limit number
ledger_balance number
todays_purchases number
payment_account_number string
View JSON Schema on GitHub

JSON Schema

ordoro-balance-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-balance-schema.json",
  "title": "Account Balance Response Schema",
  "additionalProperties": false,
  "type": "object",
  "properties": {
    "apv_balance": {
      "type": "number"
    },
    "balance": {
      "type": "number"
    },
    "daily_purchase_limit": {
      "type": "number"
    },
    "ledger_balance": {
      "type": "number"
    },
    "todays_purchases": {
      "type": "number"
    },
    "payment_account_number": {
      "type": "string"
    }
  },
  "required": [
    "balance"
  ]
}