Bamboo Invest · Schema

Error changeset response

Error response for request which manipulates data

InvestmentsStocksFractional SharesAfricaNigeriaPortfolio-ManagementBrokerageFintech

Properties

Name Type Description
message string Message why request didn't succeed
errors object Map of errors
View JSON Schema on GitHub

JSON Schema

errorchangesetresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.investbamboo.com/schemas/ErrorChangesetResponse",
  "title": "Error changeset response",
  "required": [
    "errors",
    "message"
  ],
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "Message why request didn't succeed",
      "example": "Invalid credentials"
    },
    "errors": {
      "type": "object",
      "properties": {},
      "description": "Map of errors"
    }
  },
  "description": "Error response for request which manipulates data"
}