Bamboo Invest · Schema

Deposit request for non-banking institutions

InvestmentsStocksFractional SharesAfricaNigeriaPortfolio ManagementBrokerageFintech

Properties

Name Type Description
predefined_plan_id number predefined Plan ID
payment_method_id integer Payment method ID
deposit_type string Deposit type
amount number Amount to pay
destination_wallet_id number wallet ID
View JSON Schema on GitHub

JSON Schema

depositrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.investbamboo.com/schemas/DepositRequest",
  "title": "Deposit request for non-banking institutions",
  "required": [
    "payment_method_id",
    "deposit_type",
    "amount",
    "destination_wallet_id"
  ],
  "type": "object",
  "properties": {
    "predefined_plan_id": {
      "type": "number",
      "description": "predefined Plan ID",
      "default": 1
    },
    "payment_method_id": {
      "type": "integer",
      "description": "Payment method ID",
      "default": 1
    },
    "deposit_type": {
      "type": "string",
      "description": "Deposit type",
      "default": "Instant"
    },
    "amount": {
      "type": "number",
      "description": "Amount to pay",
      "default": 2000
    },
    "destination_wallet_id": {
      "type": "number",
      "description": "wallet ID",
      "default": 1
    }
  }
}