🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/vehicle/saveVehicle \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data @- <<EOF
{
"alert": true,
"createdAtMillis": 1640995200000,
"description": "Blue Honda Civic",
"name": "John's Car",
"thumbnailS3Key": "<string>",
"trust": true,
"vehicleLicensePlate": "ABC123"
}
EOF{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Name and save a vehicle based on license plate number
curl --request POST \
--url https://api2.rhombussystems.com/api/vehicle/saveVehicle \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data @- <<EOF
{
"alert": true,
"createdAtMillis": 1640995200000,
"description": "Blue Honda Civic",
"name": "John's Car",
"thumbnailS3Key": "<string>",
"trust": true,
"vehicleLicensePlate": "ABC123"
}
EOF{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for saving a vehicle with license plate information.
Whether to alert when this vehicle is detected
Creation timestamp in milliseconds
1640995200000
Description of the vehicle
"Blue Honda Civic"
Name for the vehicle
"John's Car"
S3 key for the vehicle thumbnail image
Whether this vehicle is trusted
License plate number of the vehicle
"ABC123"
Was this page helpful?