curl -X PUT "https://heimdall.qa.zoniqx.com/kyc/request-resubmission/<kycId>" \
-H "Authorization: Bearer <accessToken>" \
-H "x-tenant-id: <your-tenant-id>"
const response = await fetch("https://heimdall.qa.zoniqx.com/kyc/request-resubmission/<kycId>", {
method: "PUT",
headers: {
"Authorization": "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
},
});
const data = await response.json();type KycController_requestResubmissionResponse = Record<string, unknown>;
const response = await fetch("https://heimdall.qa.zoniqx.com/kyc/request-resubmission/<kycId>", {
method: "PUT",
headers: {
Authorization: "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
},
});
const data: KycController_requestResubmissionResponse = await response.json();import requests
url = "https://heimdall.qa.zoniqx.com/kyc/request-resubmission/<kycId>"
headers = {
"Authorization": "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
}
response = requests.put(url, headers=headers)
data = response.json()