Create KYC Session

Create a new KYC Session for a customer

post
Path parameters
customer_idstring · uuidRequired

The unique identifier of the customer

Header parameters
AuthorizationstringRequired

Token for authentication

Body
redirect_uristringOptional

Optional URI to redirect after KYC completion, useful in case you want to redirect user to your application (applicable for KYB only)

Responses
201
Successful creation of KYC
application/json
post
POST /v0/customers/{customer_id}/kycs HTTP/1.1
Host: api.alignlabs.dev
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 23

{
  "redirect_uri": "text"
}
201

Successful creation of KYC

{
  "kycs": {
    "status": "pending",
    "kyc_flow_link": "text"
  }
}

Last updated