Skip to content

alpes.one.alpes360

This documentation describes how to sync data with Alpes 360.

Note¹: Is very important!!!!!!

Records that have been saved in the Alpes 360 application may have a delay of up to 24 hours to be available in the API.

URL API

Method: GET

https://hub.alpes.one/api/v1/alpes-360/{token}

Token API

Access token is required. Please contact Alpes One support to acquire the access token.

Result in format JSON

Note:

attribute values
data[] Array list with result data the companies.
data.company Company Name.
data.unit Unit that represents the registration of vehicles.
data.vehicles[] Array List with vehicles
data.vehicles.license_plate License Plate of the vehicle.
data.vehicles.photos[] Array List with photos of the vehicle.
status Success or Error
message If the return is successful, the message will be empty.

Example the Result

Return default with success is:

{
    "data": [
        {
            "company": "COMPANY NAME",
            "unit": "UNIT NAME",
            "vehicles": [
                {
                    "license_plate": "XXX9999",
                    "photos": [
                        "https://cdn.spincar.com/swipetospin-viewers/elw9704/20180123124259.DOBMZMUN/closeups/cu-0.jpg",
                    ]
                },
                [...]
            ]
        },
        [...]
    ],
    "status": "success",
    "message": ""
}
````

Example the return with error:

```json
{
    "data": [],
    "status": "error",
    "message": "Company not found with key XXXXX"
}