Update Customer
/v0/customers/{customer_id}Path parameters
Header parameters
Request body (application/json)
Examples
Responses
Last updated
/v0/customers/{customer_id}Last updated
PUT /v0/customers/{customer_id} HTTP/1.1
Host: gateway.noxxo.com
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 279
{
"external_kyc_provider_data": {
"sumsub_share_kyc_token": "text"
},
"identifying_information": {
"id_document": {
"number": "text",
"issuing_country": "text"
},
"tax_number": "text"
},
"documents": [
{
"file_id": "123e4567-e89b-12d3-a456-426614174000",
"purpose": "id_document",
"description": "text"
}
]
}curl -X PUT "https://gateway.noxxo.com/v0/customers/{customer_id}" \
-H "Authorization: text" \
-H "Content-Type: application/json" \
-d '{
"external_kyc_provider_data": {
"sumsub_share_kyc_token": "text"
},
"identifying_information": {
"id_document": {
"number": "text",
"issuing_country": "text"
},
"tax_number": "text"
},
"documents": [
{
"file_id": "123e4567-e89b-12d3-a456-426614174000",
"purpose": "id_document",
"description": "text"
}
]
}'fetch("https://gateway.noxxo.com/v0/customers/{customer_id}", {
method: "PUT",
headers: {
"Authorization": "text",
"Content-Type": "application/json"
},
body: JSON.stringify({
external_kyc_provider_data: {
sumsub_share_kyc_token: "text"
},
identifying_information: {
id_document: {
number: "text",
issuing_country: "text"
},
tax_number: "text"
},
documents: [
{
file_id: "123e4567-e89b-12d3-a456-426614174000",
purpose: "id_document",
description: "text"
}
]
})
})
.then(res => res.json())
.then(console.log);import requests
url = "https://gateway.noxxo.com/v0/customers/{customer_id}"
headers = {
"Authorization": "text",
"Content-Type": "application/json"
}
payload = {
"external_kyc_provider_data": {
"sumsub_share_kyc_token": "text"
},
"identifying_information": {
"id_document": {
"number": "text",
"issuing_country": "text"
},
"tax_number": "text"
},
"documents": [
{
"file_id": "123e4567-e89b-12d3-a456-426614174000",
"purpose": "id_document",
"description": "text"
}
]
}
resp = requests.put(url, headers=headers, json=payload)
print(resp.status_code, resp.text){}