Skip to content

Atto Developer Documentation (all)

Download OpenAPI description
Languages
Servers
UK Environment (Production)

https://uk.api.atto.co/

US Environment (Production)

https://us.api.atto.co/

Get Token

Operations

Connect Invitation

Operations

Get Consents

Operations

Bank Account Verification

Operations

Bank Data

Operations

Income Verification

Operations

Affordability

Operations

Bank Data (stored)

Operations

Income Verification (stored)

Operations

Payment Account Confirmation

Operations

Affordability (stored)

Operations

Atto Score

Operations

Consumer Financial Health

Operations

Business Financial Health

Operations

Categorisation Engine

Operations

Income Verification Engine

Operations

Affordability Engine

Operations

Get Statement

Operations

Get Account List

Operations

Integration

If you wish to get a list of credit information accounts for a user, you can do so using the GET /connect/users/v1/{userId}/accounts endpoint.

Authentication

This API requires a bearer token using the api:cis scope.

Returns list of list of credit bureau connected accounts for a user

Request

Security
Bearer
Path
userIdstring(uuid)required

Id of the User

curl -i -X GET \
  'https://uk.api.atto.co/connect/users/v1/{userId}/accounts' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Successful response

Bodyapplication/json
userIdstring(uuid)

Id of the User

connectedAccountsArray of objects or null(ConnectedAccount)

List of Credit Accounts Successfully Connected

unConnectedAccountsArray of objects or null(UnConnectedAccount)

List of Credit Accounts UnConnected

Response
application/json
{ "userId": "2c4a230c-5085-4924-a3e1-25fb4fc5965b", "connectedAccounts": [ {} ], "unConnectedAccounts": [ {} ] }