Codat · Schema

Bank Account Credentials

Result of generate credentials

Unified_API

Properties

Name Type Description
username string Username used by the bank feeds platform to retrieve transactions
password string Password to enable the bank feeds platform to securely retrieve transactions.
View JSON Schema on GitHub

JSON Schema

codat-bankaccountcredentials-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BankAccountCredentials",
  "title": "Bank Account Credentials",
  "description": "Result of generate credentials",
  "type": "object",
  "properties": {
    "username": {
      "type": "string",
      "example": "S0MW-TR0P-7DS0",
      "description": "Username used by the bank feeds platform to retrieve transactions"
    },
    "password": {
      "type": "string",
      "example": "cO0ajh0uGyTN0Pwh",
      "description": "Password to enable the bank feeds platform to securely retrieve transactions."
    }
  },
  "examples": [
    {
      "QuickBooks Online Bank Feeds": null,
      "username": "S0MW-TR0P-7DS0",
      "password": "cO0ajh0uGyTN0Pwh"
    }
  ]
}