Find one KYC session
GET/sessions/:id
Returns the KYC session data for the given session ID
Request
Path Parameters
id stringrequired
Responses
- 200
- 404
- application/json
- Schema
- Example (from schema)
Schema
id stringrequired
The session id, used to identify the session
created date-timerequired
The date the session was created
updated date-timerequired
The date the session was last updated
customerData
object
required
country stringrequired
Customer's country ISO Code
documentNumber stringrequired
Customer's document number
documentType string
Possible values: [id-card
, passport
, driving-licence
, voting-card
]
Customer's document type
firstName stringrequired
Customer's first name
lastName stringrequired
Customer's last name
customerId string
Customer's optional identifying key
validation string
The validation id, used to retrieve the kyc session result
{
"id": "string",
"created": "2024-07-29T15:51:28.071Z",
"updated": "2024-07-29T15:51:28.071Z",
"customerData": {
"country": "string",
"documentNumber": "string",
"documentType": "id-card",
"firstName": "string",
"lastName": "string",
"customerId": "string"
},
"validation": "string"
}
Session not found
Loading...