Update Customer KYC
/auth/updateUserKYCHeader parameters
Request body (application/json)
Examples
POST /auth/updateUserKYC HTTP/1.1
Host: gateway.noxxo.com
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 279
{
"email": "[email protected]",
"sumsubsharedtoken": "_act-sbx-jwt-eyJhbGciOiJub25lIn0.eyJqdGkiOiJfYWN0LXNieC03ZmUyMzk1Ni1mMTViLTRmN2YtYjZiYi1hNDM3NDU0MjQ5OTAiLCJ1cmwiOiJodHRwczovL2FwaS5zdW1zdWIuY29tIn0."
}curl -X POST "https://gateway.noxxo.com/auth/updateUserKYC" \
-H "Authorization: text" \
-H "Content-Type: application/json" \
-d '{
"email": "[email protected]",
"sumsubsharedtoken": "_act-sbx-jwt-eyJhbGciOiJub25lIn0.eyJqdGkiOiJfYWN0LXNieC03ZmUyMzk1Ni1mMTViLTRmN2YtYjZiYi1hNDM3NDU0MjQ5OTAiLCJ1cmwiOiJodHRwczovL2FwaS5zdW1zdWIuY29tIn0."
}'fetch("https://gateway.noxxo.com/auth/updateUserKYC", {
method: "POST",
headers: {
"Authorization": "text",
"Content-Type": "application/json"
},
body: JSON.stringify(
{
"email": "[email protected]",
"sumsubsharedtoken": "_act-sbx-jwt-eyJhbGciOiJub25lIn0.eyJqdGkiOiJfYWN0LXNieC03ZmUyMzk1Ni1mMTViLTRmN2YtYjZiYi1hNDM3NDU0MjQ5OTAiLCJ1cmwiOiJodHRwczovL2FwaS5zdW1zdWIuY29tIn0."
}
)
.then(res => res.json())
.then(console.log);Responses
Last updated