Skip to main content
POST
/
api
/
v1
/
fleets
/
{assetProviderCountryCode}
/
{assetProviderCode}
/
{vehicleId}
/
tire-sets
/
{tiresetId}
/
mount
Switch the currently mounted tire set
curl --request POST \
  --url https://api.smartmove.eu/m2m/api/v1/fleets/{assetProviderCountryCode}/{assetProviderCode}/{vehicleId}/tire-sets/{tiresetId}/mount \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "frontAxle": {
    "model": "<string>",
    "size": "<string>"
  },
  "rearAxle": {
    "model": "<string>",
    "size": "<string>"
  },
  "note": "<string>",
  "dismountDate": "2023-12-25",
  "depotAddress": "<string>",
  "depotPhone": "<string>",
  "depotEmail": "[email protected]"
}
'
{
  "id": "<string>",
  "frontAxle": {
    "model": "<string>",
    "size": "<string>",
    "mileage": 123,
    "treadDepth": 123
  },
  "rearAxle": {
    "model": "<string>",
    "size": "<string>",
    "mileage": 123,
    "treadDepth": 123
  },
  "note": "<string>",
  "dismountDate": "2025-04-24",
  "depotAddress": "<string>",
  "depotPhone": "<string>",
  "depotEmail": "[email protected]",
  "ocrStatus": "NOT_STARTED",
  "blob": {
    "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "filename": "<string>",
    "uploaded": false
  }
}

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

The assetId of the vehicle

tiresetId
string
required

The tire set ID that should be mounted

Body

application/json

Storage report payload for mount

frontAxle
object
rearAxle
object
note
string
dismountDate
string<date>
depotAddress
string
depotPhone
string
depotEmail
string<email>

Response

Tire storage report created

id
string
required
frontAxle
object
rearAxle
object
note
string
dismountDate
string<date>
Example:

"2025-04-24"

depotAddress
string
depotPhone
string
depotEmail
string<email>
ocrStatus
enum<string>
Available options:
NOT_STARTED,
MANUAL,
PROCESSING,
PROCESSED,
ERROR
blob
object