Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the tax quote that was requested. This must match the ID of the requested quote. |
| documents | array | Represents an order quote or part of an order quote of tax-relevant items fulfilled from a single origin address to a single destination address, including arrays of shipping and handling fee objects |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/response-quote",
"title": "Quote",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the tax quote that was requested. This must match the ID of the requested quote."
},
"documents": {
"type": "array",
"description": "Represents an order quote or part of an order quote of tax-relevant items fulfilled from a single origin address to a single destination address, including arrays of shipping and handling fee objects for each item. Most order quotes contain a single document; however, BigCommerce supports \"multi-address orders\", which may come from or go to distinct sets of addresses and thus require multiple documents per quote.",
"items": {
"$ref": "#/components/schemas/response-document"
}
}
},
"required": [
"id",
"documents"
],
"x-internal": false
}