KYC API
Preform KYC verification on external users using this API.
Last updated
Preform KYC verification on external users using this API.
Last updated
If you use the you could use the abstraction instead.
You need the scope to access this endpoints.
GET
https://identity.vulos.io/api/v1/kyc/:id
Get the status of a KYC verification instance.
id*
String
The ID of the KYC verification instance.
Authorization*
String
Basic authentication with the application client ID as the username and the client secret (if any) as the password.
GET
https://identity.vulos.io/api/v1/kyc/list
List the KYC verification instances that were created by the application's owner.
page
Number
The page number (defaults to 0).
pageSize
Number
The number of instances per page (defaults to 10).
Authorization*
String
Basic authentication with the application client ID as the username and the client secret (if any) as the password.
POST
https://identity.vulos.io/api/v1/kyc/upload
Upload KYC verification files for future use.
Content-Type*
String
multipart/form-data
Authorization*
String
Basic authentication with the application client ID as the username and the client secret (if any) as the password.
selfiePicture*
File
The selfie picture of the user.
idCardPicture*
File
The id card picture of the user.
POST
https://identity.vulos.io/api/v1/kyc/create
Create a KYC verification instance.
Content-Type*
String
multipart/form-data
Authorization*
String
Basic authentication with the application client ID as the username and the client secret (if any) as the password.
selfiePicture
File
The selfie picture of the user (required if no URL is specified).
idCardPicture
File
The id card picture of the user (required if no URL is specified).
selfiePictureUrl
String
An URI returned by the upload endpoint.
idCardPictureUrl
String
An URI returned by the upload endpoint.
webhook
String
A webhook that gets called when the KYC verification completes (the same data is sent that the status endpoint returns, minus the webhook field and with an additional id field).
You need the scope to access this endpoints.