curl --request POST \
--url https://api.tessie.com/{vin}/plate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"plate": "<string>"
}'
{
"result": true
}
Sets the license plate for the vehicle.
curl --request POST \
--url https://api.tessie.com/{vin}/plate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"plate": "<string>"
}'
{
"result": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The associated VIN.
OK
The response is of type object
.