Deletes an existing account or customer tax_id object.
by hugo697 ยท 3/6/2024
1
type Stripe = {
2
token: string;
3
};
4
/**
5
* Delete tax ids id
6
* Deletes an existing account or customer tax_id object.
7
*/
8
export async function main(auth: Stripe, id: string) {
9
const url = new URL(`https://api.stripe.com/v1/tax_ids/${id}`);
10
11
const response = await fetch(url, {
12
method: "DELETE",
13
headers: {
14
"Content-Type": "application/x-www-form-urlencoded",
15
Authorization: "Bearer " + auth.token,
16
},
17
body: undefined,
18
});
19
if (!response.ok) {
20
const text = await response.text();
21
throw new Error(`${response.status} ${text}`);
22
}
23
return await response.json();
24
25