Resend Withdrawal Code
curl --request POST \
--url https://app.digitalsurge.com.au/api/private/v2/wallet/{asset}/withdrawals/resend-code/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.digitalsurge.com.au/api/private/v2/wallet/{asset}/withdrawals/resend-code/"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.digitalsurge.com.au/api/private/v2/wallet/{asset}/withdrawals/resend-code/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"sms_sent": true
}{
"code": "<string>",
"message": "<string>"
}Private
Resend Withdrawal Code
Request a withdrawal to a saved address book entry and review past withdrawals.
The destination must be provided as the ID of a confirmed address book entry rather than a raw address. Two-factor authentication is required, and first-time addresses require email confirmation before the withdrawal is released.
POST
/
api
/
private
/
v2
/
wallet
/
{asset}
/
withdrawals
/
resend-code
/
Resend Withdrawal Code
curl --request POST \
--url https://app.digitalsurge.com.au/api/private/v2/wallet/{asset}/withdrawals/resend-code/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.digitalsurge.com.au/api/private/v2/wallet/{asset}/withdrawals/resend-code/"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.digitalsurge.com.au/api/private/v2/wallet/{asset}/withdrawals/resend-code/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"sms_sent": true
}{
"code": "<string>",
"message": "<string>"
}