Codat · Schema

Banking data upload settings

Configuration settings for uploading banking data to Codat

Unified_API

Properties

Name Type Description
source string The source of the banking data that determines its format
accountId string The ID of the account in the third-party platform
providerId string TrueLayer provider ID (only required if source is TrueLayer)
View JSON Schema on GitHub

JSON Schema

codat-bankstatementuploadconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BankStatementUploadConfiguration",
  "title": "Banking data upload settings",
  "description": "Configuration settings for uploading banking data to Codat",
  "additionalProperties": false,
  "type": "object",
  "properties": {
    "source": {
      "type": "string",
      "enum": [
        "codat"
      ],
      "description": "The source of the banking data that determines its format"
    },
    "accountId": {
      "type": "string",
      "description": "The ID of the account in the third-party platform"
    },
    "providerId": {
      "type": "string",
      "description": "TrueLayer provider ID (only required if source is TrueLayer)"
    }
  }
}