Items statuses
An item represents a connection to a bank account using a set of user credentials. It can contain one or more accounts, each of which holds transactions.
The status of an item is described by three fields:
statusstatus_code_infostatus_code_description
Example:
status-> "1010"status_code_info-> "OTP_REQUIRED"status_code_description-> "Please fill in the strong customer authentication (SMS, notification, etc.) provided by your bank"
If you need the status_code_description in French, add a header "Accept-Language" -> 'fr' in your request.
Status
| Status | Description |
|---|---|
| 0 | Everything is awesome. |
| -2 | The item was recently added, and the item's refresh is in progress. |
| -3 | The credentials were recently updated, and the item's refresh is in progress. |
| 402 | Wrong credentials were provided. |
| 429 | An action from the user is required within the online banking of the user. This can occur when the user needs to accept new Terms of Service, change their credentials, or when it's their first time connecting to the bank's website. |
| 1003 | Couldn't refresh the item; please try again. |
| 1005 | Account not supported. |
| 1007 | Refreshing the item is temporarily disabled. |
| 1009 | The account balance has changed, but no new transactions were found. This can happen with stock or life insurance accounts. |
| 1010 | The item wasn't refreshed successfully because it required a Multi-Factor Authentication (MFA) or One-Time Password (OTP) that wasn't provided. Please see Strong Customer Authentication. |
| 1099 | The item is being migrated to another bank. |
status_code_info and status_code_description
Status | Status code info |
|---|---|
402 | INVALID_CREDS |
429 | TOS_TO_VALIDATE |
1003 | CNT_CRASH |
1005 | OTP_NOT_SUPPORTED |
1010 | OTP_REQUIRED |
The status_code_description are the messages displayed to the users for each status_code_info detailed above.
Item resource example
{
"id": 187791,
"status": 1010,
"status_code_info": "OTP_REQUIRED",
"status_code_description": "Please fill in the strong customer authentication (SMS, notification, etc.) provided by your bank",
"bank_id": 408
}Updated about 1 month ago
