Skip to main content

Update Vehicle Renewal Type

Update a Vehicle Renewal Type

Path Parameters

  • id string required

    Possible values: Value must match regular expression ^[0-9]+$

    The id of the relevant record

Request Body

  • name string
Responses

OK

PATCH /v1/vehicle_renewal_types/:id

Authorization

type: apiKeyname: Authorizationin: header
type: apiKeyname: Account-Tokenin: header

Request

Base URL
https://secure.fleetio.com/api
id — path required
Body
{
"name": "string"
}
curl -L -X PATCH 'https://secure.fleetio.com/api/v1/vehicle_renewal_types/:id' \
-H 'Content-Type: application/json' \
-H 'Authorization: Token <API_KEY>' \
-H 'Account-Token: <ACCOUNT_TOKEN>' \
-H 'X-Api-Version: 2024-01-01' \
--data-raw '{
"name": "string"
}'