Request KYB for a provider
curl --request POST \
--url https://api.example.com/api/v1/kyb/b2b/kyb/request \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/kyb/b2b/kyb/request"
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/kyb/b2b/kyb/request', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}B2B
Request KYB for a provider
Request KYB verification for a provider
POST
/
api
/
v1
/
kyb
/
b2b
/
kyb
/
request
Request KYB for a provider
curl --request POST \
--url https://api.example.com/api/v1/kyb/b2b/kyb/request \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/kyb/b2b/kyb/request"
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/kyb/b2b/kyb/request', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?