Delete a specified external account for a given account.
1
type Stripe = {
2
token: string;
3
};
4
/**
5
* Delete accounts account external accounts id
6
* Delete a specified external account for a given account.
7
*/
8
export async function main(auth: Stripe, account: string, id: string) {
9
const url = new URL(
10
`https://api.stripe.com/v1/accounts/${account}/external_accounts/${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