Skip to main content
PUT
/
api
/
v1
/
fleets
/
{assetProviderCountryCode}
/
{assetProviderCode}
/
{vehicleId}
/
checklist
/
{checklistEntryId}
Update checklist entry
curl --request PUT \
  --url https://api.smartmove.eu/m2m/api/v1/fleets/{assetProviderCountryCode}/{assetProviderCode}/{vehicleId}/checklist/{checklistEntryId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "note": "<string>"
}
'
{
  "id": 123,
  "title": "<string>",
  "checkmark": true,
  "note": "<string>",
  "checkDate": "2025-10-07T10:24:41.143Z",
  "uncheckDate": "2025-10-07T10:24:41.143Z"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

assetProviderCountryCode
string
required

Asset provider country code

Required string length: 2
assetProviderCode
string
required

Asset provider code

Required string length: 3
vehicleId
string
required

Id of vehicle

checklistEntryId
integer
required

Id of checklist entry

Body

application/json

The request body contains the information to overwrite the specified checklist entry with

title
string
required

Title of checklist entry

note
string

Content of checklist entry

Response

Updated checklist entry

id
integer
required
title
string
required

Title of checklist entry

checkmark
boolean
required

Indicator of checklist entry inspection status

note
string

Content of checklist entry

checkDate
string<date-time>

Most recent timestamp of checkmark checking action

Example:

"2025-10-07T10:24:41.143Z"

uncheckDate
string<date-time>

Most recent timestamp of checkmark unchecking action

Example:

"2025-10-07T10:24:41.143Z"