POST
/
v2
/
driver-agreements
/
bulk
curl --request POST \
  --url https://api.app.fleetit.com/v2/driver-agreements/bulk/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "agreement_number": "ABC-0000-0004",
    "agreement_start_date": "2026-01-09T00:00:00Z",
    "agreement_end_date": "2026-01-10T11:59:59Z",
    "driver": 103,
    "vehicle": 7883
  }
]'
[
  {
    "agreement_number": "ABC-0000-0004",
    "agreement_start_date": "2026-01-09T00:00:00-05:00",
    "agreement_end_date": "2026-01-10T11:59:59.990000-05:00",
    "driver": 103,
    "vehicle": 7883,
    "parent_agreement": null
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json · object[]

The body is of type object[].

Response

201 - application/json
Bulk Driver Agreements Created Successfully

The response is of type object[].