curl --request PATCH \
--url https://api.example.com/v2/fleet/settings/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"custom_fee": "<string>",
"invoice_logo": "<string>",
"street": "<string>",
"zip_code": "<string>",
"city": "<string>",
"country": "<string>",
"summary_email_frequency": "NONE",
"driver_invoice_frequency": "NONE",
"driver_invoice_amount_choice": "REAL_COST",
"amount_override": "CASH_COST",
"has_driver_invoice": true
}
'{
"custom_fee": "<string>",
"invoice_logo": "<string>",
"street": "<string>",
"zip_code": "<string>",
"city": "<string>",
"country": "<string>",
"summary_email_frequency": "NONE",
"driver_invoice_frequency": "NONE",
"driver_invoice_amount_choice": "REAL_COST",
"amount_override": "CASH_COST",
"has_driver_invoice": true
}Partially update fleet settings.
curl --request PATCH \
--url https://api.example.com/v2/fleet/settings/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"custom_fee": "<string>",
"invoice_logo": "<string>",
"street": "<string>",
"zip_code": "<string>",
"city": "<string>",
"country": "<string>",
"summary_email_frequency": "NONE",
"driver_invoice_frequency": "NONE",
"driver_invoice_amount_choice": "REAL_COST",
"amount_override": "CASH_COST",
"has_driver_invoice": true
}
'{
"custom_fee": "<string>",
"invoice_logo": "<string>",
"street": "<string>",
"zip_code": "<string>",
"city": "<string>",
"country": "<string>",
"summary_email_frequency": "NONE",
"driver_invoice_frequency": "NONE",
"driver_invoice_amount_choice": "REAL_COST",
"amount_override": "CASH_COST",
"has_driver_invoice": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
^-?\d{0,3}(?:\.\d{0,2})?$(?:png)$200200200200NONE - NoneDAILY - DailyWEEKLY - WeeklyMONTHLY - MonthlyNONE, DAILY, WEEKLY, MONTHLY NONE - NoneDAILY - DailyWEEKLY - WeeklyMONTHLY - MonthlyNONE, DAILY, WEEKLY, MONTHLY REAL_COST - Real CostCASH_COST - Cash CostCUSTOM_FEE - Custom FeeREAL_COST, CASH_COST, CUSTOM_FEE CASH_COST - cash costCASH_COST ^-?\d{0,3}(?:\.\d{0,2})?$(?:png)$200200200200NONE - NoneDAILY - DailyWEEKLY - WeeklyMONTHLY - MonthlyNONE, DAILY, WEEKLY, MONTHLY NONE - NoneDAILY - DailyWEEKLY - WeeklyMONTHLY - MonthlyNONE, DAILY, WEEKLY, MONTHLY REAL_COST - Real CostCASH_COST - Cash CostCUSTOM_FEE - Custom FeeREAL_COST, CASH_COST, CUSTOM_FEE CASH_COST - cash costCASH_COST Was this page helpful?