curl -X GET "https://heimdall.qa.zoniqx.com/signed-documents/<id>" \
-H "Authorization: Bearer <accessToken>" \
-H "x-tenant-id: <your-tenant-id>"
const response = await fetch("https://heimdall.qa.zoniqx.com/signed-documents/<id>", {
method: "GET",
headers: {
"Authorization": "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
},
});
const data = await response.json();type SignedDocumentsController_findOneResponse = Record<string, unknown>;
const response = await fetch("https://heimdall.qa.zoniqx.com/signed-documents/<id>", {
method: "GET",
headers: {
Authorization: "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
},
});
const data: SignedDocumentsController_findOneResponse = await response.json();import requests
url = "https://heimdall.qa.zoniqx.com/signed-documents/<id>"
headers = {
"Authorization": "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
}
response = requests.get(url, headers=headers)
data = response.json()