OrderTaxLines
Displays applied tax lines for orders, detailing title, rate, and tax amount.
View-Specific Information
Select
The connector uses the Shopify API to process WHERE clause conditions built with the following column and operators. The connector processes other filters client-side within the connector.
- ResourceId supports the '=, IN' comparison operators.
For example, the following query is processed server-side:
SELECT * FROM OrderTaxLines WHERE ResourceId = 'Val1'
Columns
| Name | Type | References | Description |
| Title [KEY] | String | The descriptive name of the tax applied to the order line item, such as 'Sales Tax' or 'VAT'. | |
| ResourceId [KEY] | String |
Orders.Id | A globally unique identifier that references the tax line record. |
| Source | String | Indicates the origin of the tax calculation, such as an app, a manual entry, or a Shopify-managed tax engine. | |
| Rate | Double | The fractional tax rate applied to the line item, expressed as a decimal value. For example, 0.075 for a 7.5% tax rate. | |
| ChannelLiable | Bool | Specifies whether the sales channel that submitted the order is responsible for remitting this tax. A null value indicates that the liability is unknown. | |
| RatePercentage | Double | The tax rate applied to the line item, expressed as a percentage value for easier readability. | |
| PriceSetPresentmentMoneyAmount | Decimal | The monetary amount of the tax in the presentment currency, reflecting how the tax appears to customers. | |
| PriceSetPresentmentMoneyCurrencyCode | String | The ISO 4217 currency code that identifies the presentment currency for the tax amount, such as 'USD' or 'EUR'. | |
| PriceSetShopMoneyAmount | Decimal | The monetary amount of the tax in the shop's base currency, used for accounting and reporting purposes. | |
| PriceSetShopMoneyCurrencyCode | String | The ISO 4217 currency code that identifies the shop's base currency for the tax amount. |