Skip to main content
PUT
/
api
/
v1
/
fleets
/
{assetProviderCountryCode}
/
{assetProviderCode}
/
checklist
/
template
/
{templateEntryId}
Update template
curl --request PUT \
  --url https://api.smartmove.eu/m2m/api/v1/fleets/{assetProviderCountryCode}/{assetProviderCode}/checklist/template/{templateEntryId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "note": "<string>"
}
'
{
  "id": 123,
  "title": "<string>",
  "note": "<string>"
}

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
templateEntryId
integer
required

Id of checklist template

Body

application/json

The request body contains the checklist template that should be created

title
string
required

Title of checklist template

note
string

Content of checklist template

Response

Updated checklist template

id
integer
required
title
string
required

Title of checklist template

note
string

Content of checklist template