item_taxes
Resource: item_tax
Displays a list of applicable taxes for the product. Note that this resource does not list taxes applied to shipping or handling. Each entry contains the tax name and the per-item tax amount.
Required Scopes
Full
store_full_access
Read
tax_settings_read
Write
tax_settings_write Actions
GET View item taxes
HEAD Get just the header response
OPTIONS Get a response explaining which HTTP methods are supported
Properties (5)
_embedded Object · Read-only Contains fx:item_taxes[] — array of item_tax resources
name String · Read-only The name of the tax.
amount Number · Read-only The tax amount for the current item (per each).
date_created String (nullable) · Read-only The date this resource was created.
date_modified String (nullable) · Read-only The date this resource was last modified.
Link Relations (6)
self This Item Tax Only present when this item tax belongs to a completed transaction.
Only present when this item tax belongs to an incomplete transaction (cart).
https://api.foxycart.com/items/{item_id}/item_taxes
Example Representation
{
"_links": {
"curies": [
{
"name": "fx",
"href": "https://api.foxycart.com/rels/{rel}",
"templated": true
}
],
"self": {
"href": "https://api.foxycart.com/items/999/item_taxes",
"title": "This Item Tax"
},
"fx:store": {
"href": "https://api.foxycart.com/stores/456",
"title": "This Store"
},
"fx:item": {
"href": "https://api.foxycart.com/items/456",
"title": "This Item"
},
"fx:tax": {
"href": "https://api.foxycart.com/taxes/456",
"title": "This Tax"
}
},
"name": "global",
"amount": 3,
"date_created": "2023-11-29T12:31:12-0800",
"date_modified": "2023-11-29T12:31:12-0800"
}