Order Entry tax schedule details

Use Order Entry tax schedule detail to associate a tax detail to the date when it becomes effective.

List Order Entry tax schedule details

get/objects/tax/order-entry-tax-schedule-detail

Returns a collection with a key, ID, and link for each Order Entry tax schedule detail. This operation is mostly for use in testing; use the query service to find objects that meet certain criteria and to specify properties that are returned.

SecurityOAuth2
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": [
    • {
      • "key": "8",
      • "id": "8",
      • "href": "/objects/tax/order-entry-tax-schedule-detail/8"
      },
    • {
      • "key": "9",
      • "id": "9",
      • "href": "/objects/tax/order-entry-tax-schedule-detail/9"
      },
    • {
      • "key": "10",
      • "id": "10",
      • "href": "/objects/tax/order-entry-tax-schedule-detail/10"
      }
    ],
  • "ia::meta": {
    • "totalCount": 3,
    • "start": 1,
    • "pageSize": 100,
    • "next": null,
    • "previous": null
    }
}

Get an Order Entry tax schedule detail

get/objects/tax/order-entry-tax-schedule-detail/{key}

Returns detailed information for a specified Order Entry tax schedule detail.

SecurityOAuth2
Request
path Parameters
key
required
string
Default: "162"

System-assigned key for the Order Entry tax schedule detail.

Example: 99
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "ia::result": {
    • "taxSchedule": {
      • "key": "162",
      • "id": "162",
      • "name": "Tax Florida",
      • "href": "/objects/tax/order-entry-tax-schedule/162"
      },
    • "key": "44",
    • "id": "44",
    • "taxDetail": {
      • "id": "Sales Tax California",
      • "key": "22",
      • "href": "/objects/tax/order-entry-tax-detail/22"
      },
    • "effectiveDate": "2022-02-03",
    • "href": "/objects/tax/order-entry-tax-schedule-detail/44"
    },
  • "ia::meta": {
    • "totalCount": 1
    }
}