Delete a Customer tax ID
DELETE
/v1/customers/{customer}/tax_ids/{id} https://api.stripe.com/
Parameters
path Path Parameters
| Name | Type |
|---|---|
customer
required
| string |
id
required
| string |
Request Body
application/x-www-form-urlencoded
{}
Responses
200 application/json
Successful response.
interface DeletedTaxId {
deleted: true;
id: string;
object: "tax_id";
}
deleted: true;
id: string;
object: "tax_id";
}
default application/json
Error response.
interface Error {
error:ApiErrors ;
}
error:
}