Resend Confirmation Code
Body Parameters
Parameter
Type
Description
Response Body
Key
Description
Responses
curl -X POST \
-H 'Content-type: application/json' \
-H "Authorization: Bearer ${USER_AUTH_TOKEN}" \
--data '{ "atx_id": 987654 }' \
'https://api.sfox.com/v1/user/withdraw/resend-confirmation'const axios = require('axios');
const config = {
method: 'post',
url: 'https://api.sfox.com/v1/user/withdraw/resend-confirmation',
headers: {
"Content-Type": "application/json",
'Authorization': `Bearer ${process.env.USER_AUTH_TOKEN}`
},
data: {
atx_id: 987654
}
}
axios(config)
.then((response) => {
console.log(response.status);
console.log(response.data);
})
.catch((error) => {
console.error(error.response.status);
console.error(error.response.data);
});Last updated