Bamboo Invest · Schema

Status of a Deposit

Deposit status

InvestmentsStocksFractional SharesAfricaNigeriaPortfolio ManagementBrokerageFintech

Properties

Name Type Description
amount integer amount
currency string currency
status string status
txref string status
View JSON Schema on GitHub

JSON Schema

depositstatus.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.investbamboo.com/schemas/DepositStatus",
  "title": "Status of a Deposit",
  "type": "object",
  "description": "Deposit status",
  "properties": {
    "amount": {
      "type": "integer",
      "description": "amount",
      "example": 100.02
    },
    "currency": {
      "type": "string",
      "description": "currency",
      "example": "USD"
    },
    "status": {
      "type": "string",
      "description": "status",
      "example": "Settlemented"
    },
    "txref": {
      "type": "string",
      "description": "status",
      "example": "BIO63894410548a7f170d8159978UIO"
    }
  }
}