Delete a stripe tax account
How to delete an existing stripe tax account via API
To delete a stripe tax account, send a DELETE
request to the /api/stripe_tax_accounts/:id
endpoint, where id
is the id of the stripe tax account that you want to delete.
Request
DELETE https://yourdomain.commercelayer.io/api/stripe_tax_accounts/:id
Example
The following request tries to delete the stripe tax account identified by the ID "xYZkjABcde":
curl -g -X DELETE \
'https://yourdomain.commercelayer.io/api/stripe_tax_accounts/xYZkjABcde' \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: Bearer your-access-token'
Last updated