Bamboo Invest · Schema

Deposit request

InvestmentsStocksFractional SharesAfricaNigeriaPortfolio ManagementBrokerageFintech

Properties

Name Type Description
provider_txref string Deposit reference
provider string API Consumer Name
fee number Fee
currency string Currency
amount number Amount to be deposited
View JSON Schema on GitHub

JSON Schema

lsxngdeposit.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.investbamboo.com/schemas/lsxngdeposit",
  "title": "Deposit request",
  "required": [
    "amount",
    "currency",
    "fee",
    "provider_txref",
    "provider"
  ],
  "type": "object",
  "properties": {
    "provider_txref": {
      "type": "string",
      "description": "Deposit reference",
      "example": "INVcal2VzeVGJkCXNx"
    },
    "provider": {
      "type": "string",
      "description": "API Consumer Name",
      "example": "invest-bamboo"
    },
    "fee": {
      "type": "number",
      "description": "Fee",
      "example": 20
    },
    "currency": {
      "type": "string",
      "description": "Currency",
      "example": "NGN"
    },
    "amount": {
      "type": "number",
      "description": "Amount to be deposited",
      "example": 200000
    }
  }
}