Skip to main content
POST
/
api
/
v1
/
fleets
/
{assetProviderCountryCode}
/
{assetProviderCode}
/
{vehicleId}
/
checklist
Get checklist and templates
curl --request POST \
  --url https://api.smartmove.eu/m2m/api/v1/fleets/{assetProviderCountryCode}/{assetProviderCode}/{vehicleId}/checklist \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "pageSize": 100,
  "page": 0
}
'
{
  "items": {
    "checklist": [
      {
        "id": 123,
        "title": "<string>",
        "checkmark": true,
        "note": "<string>",
        "checkDate": "2025-10-07T10:24:41.143Z",
        "uncheckDate": "2025-10-07T10:24:41.143Z"
      }
    ],
    "templateEntries": [
      {
        "templateEntryId": 123,
        "vehicleId": 123,
        "title": "<string>",
        "checkmark": true,
        "note": "<string>",
        "checkDate": "2025-10-07T10:24:41.143Z",
        "uncheckDate": "2025-10-07T10:24:41.143Z"
      }
    ]
  },
  "pagination": {
    "pageSize": 100,
    "pageNumber": 0,
    "totalEntries": 1
  }
}

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

Body

application/json

The request body contains the page of the results that should be retrieved

Request what page is wanted to be retrieved

pageSize
integer
default:100
required
Required range: 1 <= x <= 100
page
integer
default:0
required
Required range: x >= 0

Response

Checklist of a vehicle

items
object
required
pagination
object
required