Sphere Paysphere
Kyc link

Create KYC Link

POST
/v2/customer/{customer_id}/kyc-link

Authorization

AuthorizationRequiredBearer <token>

In: header

Request Body

application/jsonOptional
typeRequiredstring

The customer type of either individual or business.

firstNameRequiredstring

The first name of the customer.

lastNameRequiredstring

The last name of the customer.

emailRequiredstring

The email of the customer.

Format: "email"

Path Parameters

customer_idRequiredstring

The customer's id.

curl -X POST "https://api.sandbox.spherepay.co/v2/customer/{{customer_id}}/kyc-link" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "individual",
    "firstName": "Jane",
    "lastName": "Doe",
    "email": "janedoe123@gmail.com"
  }'

OK

{
  "url": "https://in.sumsub.com/websdk/p/sbx_gq9t7z0Zf6agMcbn",
  "expiresAt": "2025-04-27T02:35:18.842Z"
}