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