Integrations
Auth
Tolls
Integrations
- Fleet Active Integrations
- Logs
- GETList
Drivers
- Driver-agreements
- POSTAdd
- GETList
- POSTBulk Create
Settings
Update
Update the settings of the fleet.
PUT
/
v2
/
fleet
/
settings
curl --request PUT \
--url https://api.app.fleetit.com/v2/fleet/settings/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"custom_fee": null,
"invoice_logo": null,
"street": "Street Address",
"zip_code": "12345",
"city": "City",
"country": "Country",
"summary_email_frequency": "WEEKLY",
"driver_invoice_frequency": "WEEKLY",
"driver_invoice_amount_choice": "CASH_COST",
"amount_override": null
}'
{
"custom_fee": null,
"invoice_logo": null,
"street": "Street Address",
"zip_code": "12345",
"city": "City",
"country": "Country",
"summary_email_frequency": "WEEKLY",
"driver_invoice_frequency": "WEEKLY",
"driver_invoice_amount_choice": "CASH_COST",
"amount_override": null,
"has_driver_invoice": null
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
Body
application/json
Response
200 - application/json
Successful response
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.app.fleetit.com/v2/fleet/settings/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"custom_fee": null,
"invoice_logo": null,
"street": "Street Address",
"zip_code": "12345",
"city": "City",
"country": "Country",
"summary_email_frequency": "WEEKLY",
"driver_invoice_frequency": "WEEKLY",
"driver_invoice_amount_choice": "CASH_COST",
"amount_override": null
}'
{
"custom_fee": null,
"invoice_logo": null,
"street": "Street Address",
"zip_code": "12345",
"city": "City",
"country": "Country",
"summary_email_frequency": "WEEKLY",
"driver_invoice_frequency": "WEEKLY",
"driver_invoice_amount_choice": "CASH_COST",
"amount_override": null,
"has_driver_invoice": null
}
Assistant
Responses are generated using AI and may contain mistakes.