API Reference//
- Create a Credit Information User Registration
Integration
Authorization
Validation Rules
Create a Credit Informati...
This API validates a users personal information which if successful will retrieve their credit profile.
Security
Bearer(Required scopes: api:cis)
User request details.
Customer reference for the user in the Atto Credit Information Journey
The title of the user (e.g., Mr, Mrs, Ms, Dr).
The middle names of the user (optional).
The date of birth of the user, which must be between 18 and 120 years ago.
The phone number of the user, which must be in a valid phone format.
The email address of the user, which must be in a valid email format and between 5 and 255 characters long.
- UK Environment (Production)https://uk.api.atto.co/connect/users/v1/verification
- US Environment (Production)https://us.api.atto.co/connect/users/v1/verification
- application/json-patch+json
- application/json
- text/json
- application/*+json
curl -i -X POST \
https://uk.api.atto.co/connect/users/v1/verification \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json-patch+json' \
-d '{
"customerReference": "string",
"title": "string",
"firstName": "string",
"middleNames": "string",
"lastName": "string",
"dateOfBirth": "2019-08-24T14:15:22Z",
"phoneNumber": "string",
"emailAddress": "user@example.com",
"address": {
"abodeNumber": "string",
"buildingName": "string",
"buildingNumber": "string",
"address1": "string",
"address2": "string",
"address3": "string",
"postCode": "string",
"town": "string"
}
}'Response
{ "status": "Success", "message": "User verification successful", "userId": "a0d4bcfb-daba-427a-9ce1-0cd6e53d2625", "consentId": "2296e344-5238-4249-20f0-08dd8d44a444", "customerReference": "customer_reference_123" }