Returns a list of tax IDs for a customer.
Parameters
No parameters.
More parameters
- ending_
beforestring - limitinteger
- starting_
afterstring
Returns
A hash with a data property that contains an array of up to limit tax IDs, starting after tax ID starting_. Each entry in the array is a separate tax_ object. If no more tax IDs are available, the resulting array will be empty. Raises an error if the customer ID is invalid.
{ "object": "list", "url": "/v1/customers/cus_NZKoSNZZ58qtO0/tax_ids", "has_more": false, "data": [ { "id": "txi_1MoC8zLkdIwHu7ixEhgWcHzJ", "object": "tax_id", "country": "DE", "created": 1679431857, "customer": "cus_NZKoSNZZ58qtO0", "livemode": false, "type": "eu_vat", "value": "DE123456789", "verification": { "status": "pending", "verified_address": null, "verified_name": null } } ]}Returns a list of tax IDs.
Parameters
- ownerhash
The account or customer the tax ID belongs to. Defaults to
owner[type]=self.
More parameters
- ending_
beforestring - limitinteger
- starting_
afterstring
Returns
A hash with a data property that contains an array of up to limit tax IDs, starting after tax ID starting_. Each entry in the array is a separate tax_ object. If no more tax IDs are available, the resulting array will be empty.
{ "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 } } ]}Deletes an existing tax_ object.
Parameters
No parameters.
Returns
Returns an object with a deleted parameter on success. If the tax_ object does not exist, this call raises an error.
{ "id": "txi_1MoC8zLkdIwHu7ixEhgWcHzJ", "object": "tax_id", "deleted": true}Deletes an existing account or customer tax_ object.
Parameters
No parameters.
Returns
Returns an object with a deleted parameter on success. If the tax_ object does not exist, this call raises an error.
{ "id": "txi_1NuMB12eZvKYlo2CMecoWkZd", "object": "tax_id", "deleted": true}Test Clocks Test helper
A test clock enables deterministic control over objects in testmode. With a test clock, you can create objects at a frozen time in the past or future, and advance to a specific future time to observe webhooks and state changes. After the clock advances, you can either validate the current state of your scenario (and test your assumptions), change the current state of your scenario (and test more complex scenarios), or keep advancing forward in time.