curl -X POST "https://heimdall.qa.zoniqx.com/non-custodian-xrpl/wallet/challenge/<address>" \
-H "Authorization: Bearer <accessToken>" \
-H "x-tenant-id: <your-tenant-id>"
const response = await fetch("https://heimdall.qa.zoniqx.com/non-custodian-xrpl/wallet/challenge/<address>", {
method: "POST",
headers: {
"Authorization": "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
},
});
const data = await response.json();type NonCustodianXrplController_createChallengeResponse = Record<string, unknown>;
const response = await fetch("https://heimdall.qa.zoniqx.com/non-custodian-xrpl/wallet/challenge/<address>", {
method: "POST",
headers: {
Authorization: "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
},
});
const data: NonCustodianXrplController_createChallengeResponse = await response.json();import requests
url = "https://heimdall.qa.zoniqx.com/non-custodian-xrpl/wallet/challenge/<address>"
headers = {
"Authorization": "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
}
response = requests.post(url, headers=headers)
data = response.json()