Get KYC verification link
curl --request POST \
--url https://api.example.com/api/v1/cards/kyc/link \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/cards/kyc/link"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/api/v1/cards/kyc/link', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"link": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Cards
Get KYC verification link
Get link for user to complete KYC verification in browser.
POST
/
api
/
v1
/
cards
/
kyc
/
link
Get KYC verification link
curl --request POST \
--url https://api.example.com/api/v1/cards/kyc/link \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/cards/kyc/link"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/api/v1/cards/kyc/link', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"link": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?