curl --request POST \
--url https://sandbox.hurdlr.com/rest/v5/mileage/car \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: */*' \
--data '
{
"car": {
"name": "<string>",
"id": 123,
"make": "<string>",
"model": "<string>",
"year": 123,
"isPrimary": true,
"status": "ACTIVE",
"details": [
{
"year": 123,
"beginOdometer": 123
}
]
}
}
'