API Reference
DocumentationChangelogConsoleWebsite
  • API Guides
  • Overview
    • API design
    • Errors
    • Webview
    • Fair usage policy
    • Authentication
  • USER CONNECTIONS
    • Users
    • Connectors
    • Connections
  • PRODUCTS
    • DATA AGGREGATION
      • Bank accounts
      • Bank transactions
      • Transactions attachments
      • Categorization
      • Bank account types
      • Balances
      • Currencies
      • Account Ownerships
      • Identities (obsolete)
      • Categories (obsolete)
      • Invoices
      • Credit notes
      • Advisory (obsolete)
      • Indicators
    • WEALTH AGGREGATION
      • Investments
      • Market orders
      • Pockets
      • Loan amortizations
    • DOCUMENTS AGGREGATION
      • Subscriptions
      • Documents
      • Document types
      • Connection Identity
    • PAYMENTS
      • Payments
      • Payment Links
      • Transfers (obsolete)
  • API SETUP
    • Configuration
    • Client applications
Powered by GitBook
On this page
  • Error object
  • ErrorCode values

Was this helpful?

  1. Overview

Errors

PreviousAPI designNextWebview

Last updated 10 months ago

Was this helpful?

We use a common JSON error format across all our service endpoints.

Error object

Property
Type
Description

code

string

A code to describe the error.

description

String

Technical description of the error (not intended for end-user display).

message

String or null

For relevant errors, an optional message from the institution website or API that can be presented to an end-user. These messages usually bring details or instructions that complement the error code, but they are not translated.

request_id

Integer or null

Unique ID of the request (which could be used for audit).

ErrorCode values

Common error codes

Code
Description

connectionLocked

For all services in relation with a sub-connection resource, this error indicates that the connection is in a readonly state.

missingParameter

A required parameter was omitted in the request.

invalidValue

The request is invalid, because of an unacceptable parameter or body property. Details are provided in the description.

methodNotAllowed

An API endpoint was called with an unsupported HTTP method.

bug Other codes

An internal error occurred.

Additional codes may be used or added in the future. When implementing error handling, always fallback to a generic case for unknown codes.

ErrorCode