Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lobot/a676ccf440a24433cd4515f3c48603eb to your computer and use it in GitHub Desktop.
Save lobot/a676ccf440a24433cd4515f3c48603eb to your computer and use it in GitHub Desktop.
help-center-mass-delete-cancel-yourdb-typescript
const config: Configuration = new Configuration({
username: LOB_API_KEY,
});
const postcardsApi = new PostcardsApi(config);
for (let item of dbdata) {
await postcardsApi.cancel(item.id);
/* Remove the record from your database */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment