---
title: "Lists an order's tax details"
method: GET
path: "/orders/{id}/tax-details"
tags: ["Orders"]
---

# Lists an order's tax details

`GET /orders/{id}/tax-details`

Retrieves the tax details of each line item in an order. You're required to specify the order's identifier as a path parameter.

## Path parameters

- `id` string, required

## Response `200`

OK.

- OrderTaxDetails, nullable — The tax details of each line item in an order.
  - `orderId` string — The unique identifier of the order.
  - `items` OrderItems[]
    - `id` string — The unique identfier of a line item.
    - `taxDetails` OrderTaxes[]
      - `country` string — The country where taxes are assessed.
      - `region` string — The region where taxes are assessed. This is typically a state or province.
      - `jurisdictionType` string — The type of jurisdiction that assessed the tax. This is often a country, state, province, county, city, or district but can also be a special jurisdiction that collects a tax for a specific purpose, such as housing or transportation.
      - `jurisdictionName` string — The name of the jurisdiction that assessed the tax.
      - `taxType` string — The type of tax.
      - `taxSubType` string — The subtype of tax.
      - `taxName` string — The name of the tax.
      - `exemptUnit` number — The number of units that are exempt.
      - `nonTaxableUnit` number — The number of units that are nontaxable.
      - `unitOfBasis` string — The units the tax is based upon.
      - `rate` number, double — The tax rate percentage.
      - `effectiveRate` number, double — The effective tax rate percentage.
      - `taxAmount` number — The amount of tax.
    - `shippingTaxDetails` OrderTaxes[]
      - `country` string — The country where taxes are assessed.
      - `region` string — The region where taxes are assessed. This is typically a state or province.
      - `jurisdictionType` string — The type of jurisdiction that assessed the tax. This is often a country, state, province, county, city, or district but can also be a special jurisdiction that collects a tax for a specific purpose, such as housing or transportation.
      - `jurisdictionName` string — The name of the jurisdiction that assessed the tax.
      - `taxType` string — The type of tax.
      - `taxSubType` string — The subtype of tax.
      - `taxName` string — The name of the tax.
      - `exemptUnit` number — The number of units that are exempt.
      - `nonTaxableUnit` number — The number of units that are nontaxable.
      - `unitOfBasis` string — The units the tax is based upon.
      - `rate` number, double — The tax rate percentage.
      - `effectiveRate` number, double — The effective tax rate percentage.
      - `taxAmount` number — The amount of tax.

## Other responses

- `400` — 400 Bad Request
- `401` — 401 Unauthorized
- `403` — 403 Forbidden
- `404` — 404 Not Found
- `405` — 405 Method Not Allowed
- `406` — 406 Not Acceptable
- `408` — 408 Request Timeout
- `429` — 429 Too Many Requests
- `500` — 500 Internal Server Error
- `502` — 502 Bad Gateway Error
- `503` — 503 Service Unavailable Error
- `504` — 504 Gateway Timeout Error

---

[API](https://skmtc.net/digitalriver/apis/digital-river-api-reference.md) · [All operations](https://skmtc.net/digitalriver/apis/digital-river-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/digitalriver/digital-river-api-reference/revisions/f21981db32be/schema)
