Borderless Docs
  • Get Started
    • Welcome to Borderless
    • Quick Start
  • About us
    • About us
      • Supported countries
  • Reference
    • API Reference
      • Authentication
      • Users
      • KYC
      • Rates
      • Orders
      • Webhooks
Powered by GitBook
On this page
  1. Reference
  2. API Reference

KYC

PreviousUsersNextRates

Last updated 1 year ago

Create a form to allow a user to register their KYC information.

Find User KYC Levels

Get a form to register a user KYC

get
Authorizations
Path parameters
kycLevelstring · enumRequired

The KYC Level wanted for the KYC form instance

Possible values:
zonestring · enumRequired

The zone for the KYC form instance

Possible values:
Responses
200
HTML response with the KYC form, used by a user to register their KYC
401
Unauthorized
500
Internal server error
get
GET /kyc/register/{kycLevel}/{zone} HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*

No content

Find KYC levels for a user

get
Authorizations
Responses
200
List of KYC levels for that user
application/json
401
Unauthorized
500
Internal server error
get
GET /kyc HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
{
  "userId": 12,
  "kycLevels": [
    "firstLevel"
  ]
}
  • Create a form to allow a user to register their KYC information.
  • GETGet a form to register a user KYC
  • Find User KYC Levels
  • GETFind KYC levels for a user