Import User from KYC
POST /auth/importKYC HTTP/1.1
Host: gateway.noxxo.com
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 279
{
"sumsharedtoken": "_act-sbx-jwt-eyJhbGciOiJub25lIn0.eyJqdGkiOiJfYWN0LXNieC03ZmUyMzk1Ni1mMTViLTRmN2YtYjZiYi1hNDM3NDU0MjQ5OTAiLCJ1cmwiOiJodHRwczovL2FwaS5zdW1zdWIuY29tIn0."
}curl -X POST "https://gateway.noxxo.com/auth/importKYC" \
-H "Authorization: text" \
-H "Content-Type: application/json" \
-d '{
"sumsharedtoken": "_act-sbx-jwt-eyJhbGciOiJub25lIn0.eyJqdGkiOiJfYWN0LXNieC03ZmUyMzk1Ni1mMTViLTRmN2YtYjZiYi1hNDM3NDU0MjQ5OTAiLCJ1cmwiOiJodHRwczovL2FwaS5zdW1zdWIuY29tIn0."
}fetch("https://gateway.noxxo.com/auth/importKYC", {
method: "POST",
headers: {
"Authorization": "text",
"Content-Type": "application/json"
},
body: JSON.stringify({
"sumsubsharedtoken": "ggh-ashdgh-df"
})
.then(res => res.json())
.then(console.log)
.catch(console.error);Last updated