Payment

The payment object is an array which must contain all information required to properly execute a payment between merchant and buyer. A new element is added for each currency the merchant wishes to accept.

{
  "version": "0.0.1.0",
  "item": {
    ...
    "payment": {
      "type": "SALE",
      "escrow": {
        "type": "NONE"
      },
      "cryptocurrency": [
        {
          "currency": "BITCOIN",
          "base_price": 100000000,
          "shipping_price": {
            "domestic": 50000000,
            "international": 300000000
          },
          "address": {
            "type": "NORMAL",
            "address": "VendorXeUxhDygWCVbR9kU1TKBZDLCrxgxo"
          }
        },
        {
          "currency": "PARTICL",
          "base_price": 600000000,
          "shipping_price": {
            "domestic": 50000000,
            "international": 300000000
          },
          "address": {
            "type": "STEALTH",
            "address": "VendorStealthAddressXeUxhDygWCVbR9kU1TKBZDLCrxgxo"
          }
        }
      ]
    }
    ...
  }
}