Skip to content

Instantly share code, notes, and snippets.

@sts-developer
Created March 20, 2025 12:06
Show Gist options
  • Select an option

  • Save sts-developer/433000f87d9515d00c270c681827ff9b to your computer and use it in GitHub Desktop.

Select an option

Save sts-developer/433000f87d9515d00c270c681827ff9b to your computer and use it in GitHub Desktop.
Sample code for Node js Form1099OID Delete method
const axios = require('axios');
let config = {
method: 'delete',
maxBodyLength: Infinity,
url: 'https://testapi.taxbandits.com/v1.7.3/Form1099OID/Delete?SubmissionId=9d71ae45-df5f-49f7-86f8-e88f54132fa1&RecordIds=01132f6d-ef4a-4014-817e-94a5a19bd52b,eb39714e-f653-4c4d-a53c-07f24f9a9dj5"',
headers: {
'Authorization': 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJhM2VkMWE1ZTkwMWI0YmQzOTY5NTYwMTljYTRjMWZmOCIsImV4cCI6MTcyMzQ1Nzc1NiwiaWF0IjoxNzIzNDU0MTU2LCJpc3MiOiJodHRwczovL3Rlc3RvYXV0aC5leHByZXNzYXV0aC5uZXQvdjIvIiwic3ViIjoiOTc0YTFiZDU5Yjk3ZTE1YyJ9.DOdss97pIy6_rrS2IMDG5H8-sj0sg2cRF5upCVhBpBU'
}
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data),null,2);
})
.catch((error) => {
if (error.response) {
console.error(JSON.stringify(error.response.data),null,2);
} else if (error.request) {
console.error(error.request);
} else {
console.error(error.message);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment