List all tax IDs
GET / v1 / tax_ids
Returns a list of tax IDs.
Parameters
- owner object The account or customer the tax ID belongs to. Defaults to
owner[type]=self.
More parameters
- ending _ before string
- limit integer
- starting _ after string
Returns
A dictionary with a data property that contains an array of up to limit tax IDs, starting after tax ID starting_after. Each entry in the array is a separate tax_id object. If no more tax IDs are available, the resulting array will be empty.
Response
{ "object": "list", "url": "/v1/tax_ids", "has_more": false, "data": [ { "id": "txi_1NuMB12eZvKYlo2CMecoWkZd", "object": "tax_id", "country": "DE", "created": 123456789, "customer": null, "livemode": false, "type": "eu_vat", "value": "DE123456789", "verification": null, "owner": { "type": "self", "customer": null } } ]}
Delete a Customer tax ID
DELETE / v1 / customers /:id / tax_ids /:id
Deletes an existing tax_id object.
Parameters
No parameters.
Returns
Returns an object with a deleted parameter on success. If the tax_id object does not exist, this call raises an error.
Response
{ "id": "txi_1MoC8zLkdIwHu7ixEhgWcHzJ", "object": "tax_id", "deleted": true}
Delete a tax ID
DELETE / v1 / tax_ids /:id
Deletes an existing account or customer tax_id object.
Parameters
No parameters.
Returns
Returns an object with a deleted parameter on success. If the tax_id object does not exist, this call raises an error.
Response
{ "id": "txi_1NuMB12eZvKYlo2CMecoWkZd", "object": "tax_id", "deleted": true}
