Identities (obsolete)
Identities represent identification information returned by the institution about the user who established a connection.
This feature is obsolete. Please refere to Account Ownerships.
API endpoints
Authentication: endpoints listed in this page require header authentication with a user token.
List identities
GET
https://{domain}.biapi.pro/2.0/users/{userId}/identities
Path Parameters
Name | Type | Description |
---|---|---|
userId* | Integer or "me" | ID of the related user. |
Response body: IdentitiesList object
Get identity
GET
https://{domain}.biapi.pro/2.0/users/{userId}/identities/{identityId}
Get a single identity by ID.
Path Parameters
Name | Type | Description |
---|---|---|
userId* | Integer or "me" | ID of the related user. |
identityId* | Integer | ID of the identity. |
Response body: Identity object
Data model
IdentitiesList object
Property | Type | Description |
---|---|---|
| Array of Identity object | List of identities. |
Identity object
Property | Type | Description |
---|---|---|
| Integer | ID of the identity. |
| Integer | ID of the connection the identity was fetched from. |
| Integer | ID of the user. |
| Integer | ID of the source the identity was fetched from. |
| String or null | First name of the user, |
| String or null | Last name of the user, |
| String or null | Full name of the user has it is returned by the institution, |
| DateTime | Date and time when the identity was last updated. |
| Array of strings | List of IBANs returned by the connection. |
Last updated