Connection Object
A Connection represents a linked bank account between a user and your application.
Attributes
| Field | Type | Description |
|---|---|---|
| id | string | Unique identifier for the connection. Format: conn_ULID |
| status | string | Current state of the connection. See Connection Status |
| institutionId | string | Identifier of the connected bank (e.g., cl_banco_estado, cl_banco_chile) |
| createdAt | string | ISO 8601 timestamp when the connection was created |
| lastSyncAt | string | null | ISO 8601 timestamp of the last successful data sync. Null if never synced |
Example
json
{
"id": "conn_01HQ3K5J7X8Y9Z0A1B2C3D4E5F",
"status": "CONNECTED",
"institutionId": "cl_banco_estado",
"createdAt": "2024-01-15T10:30:00Z",
"lastSyncAt": "2024-01-15T10:32:00Z"
}