Skip to main content
PUT
/
api
/
v1
/
fleets
/
{assetProviderCountryCode}
/
{assetProviderCode}
/
{vehicleId}
/
checklist
/
template
/
{templateEntryId}
/
uncheck
Uncheck template entry
curl --request PUT \
  --url https://api.smartmove.eu/m2m/api/v1/fleets/{assetProviderCountryCode}/{assetProviderCode}/{vehicleId}/checklist/template/{templateEntryId}/uncheck \
  --header 'Authorization: Bearer <token>'
{
  "templateEntryId": 123,
  "vehicleId": 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

templateEntryId
integer
required

Id of checklist entry

Response

Unchecked template entry

templateEntryId
integer
required

First part of composite key

vehicleId
integer
required

Second part of composite key

title
string
required

Title of template entry

checkmark
boolean
required

Indicator of template entry inspection status

note
string

Content of template 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"