Skip to main content
GET
/
api
/
v1
/
fleets
/
{assetProviderCountryCode}
/
{assetProviderCode}
/
{vehicleId}
/
additional-documents
Get all additional documents
curl --request GET \
  --url https://api.smartmove.eu/m2m/api/v1/fleets/{assetProviderCountryCode}/{assetProviderCode}/{vehicleId}/additional-documents \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "title": "Parking permit",
    "created": "2023-11-07T05:31:56Z",
    "notes": "This parking permit is valid for parking lot at Parkway Drive 4",
    "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

Vehicle unique identifier

Response

All additional documents

id
string<uuid>
required

Unique id of the document

title
string
required

Title of the additional document, describing what the content of the blob is

Example:

"Parking permit"

created
string<date-time>
required
notes
string

Custom notes for this additional document

Example:

"This parking permit is valid for parking lot at Parkway Drive 4"

blob
object