Fetch the split bill associated to a given Contract

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

id

number

ID for split bill

reference_number

string

Optional field for tracking number

name

string

Name of additional payer

contact_name

string

Name of a contact

line1

string

First line of an address

line2

string

Second line of an address

city

string

City of an address

postal_code

string

Postal code of an address

subregion

string

Subregion of an address

phone_number

string

Phone number of a contact

email

string

Email of a contact

downloaded_at

date-time

Time at which the invoice pdf was downloaded

paid

boolean

Whether the invoice has been marked as paid

fleet_id

number

Program for split bill

links

object

contract

object

contract object

downloaded_by

object

downloaded_by object

``401 Unauthorized

``403 Forbidden

``404 Not found

``406 Not Acceptable

{
  "id": 1213,
  "reference_number": "Claim 1234",
  "name": "Insurance Company",
  "contact_name": "Claims Department",
  "line1": "123 W St",
  "line2": "456 W St",
  "city": "Austin",
  "postal_code": "78701",
  "subregion": "TX",
  "phone_number": "15551237890",
  "email": "aaa@bbb.com",
  "downloaded_at": "2020-10-21T10:10:10Z",
  "paid": false,
  "fleet_id": 1213,
  "links": {
    "contract": {
      "id": 2,
      "href": "https://api.dw-tst.com/admin/some_resources/2"
    },
    "downloaded_by": {
      "id": 2,
      "href": "https://api.dw-tst.com/admin/some_resources/2"
    }
  }
}