Fetch the adjustment associated to a given contract's split bill

Time Status User Agent
Make a request to see history.

URL Expired

The URL for this request expired after 30 days.

id

integer

required

The id of the contract

api-version

integer

required

Target API version

``200 Success

object

amount

float

Amount of the total to be added to the split bill

taxable

boolean

Whether the payer of the split bill pays sales tax.

links

object

contract

object

contract object

``401 Unauthorized

``403 Forbidden

``404 Not found

``406 Not Acceptable


{
  "amount": 123.45,
  "taxable": true,
  "links": {
    "contract": {
      "id": 2,
      "href": "https://api.dw-tst.com/admin/some_resources/2"
    }
  }
}
curl --request GET \
     --url https://api.dealerware.com/admin/contracts/id/split_bill/adjustment \
     --header 'accept: application/json'