curl --request POST \
--url https://api.inspecto.com/api/third-party/v1/inspections \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"templateId": "<string>",
"vehicleIds": [
{}
],
"responses": [
{
"templateItemId": "<string>",
"responseText": "<string>",
"fileUrl": "<string>",
"followUpResponses": {}
}
],
"damages": [
{
"description": "<string>",
"photoUrl": "<string>"
}
],
"notes": "<string>",
"location": {
"latitude": 123,
"longitude": 123,
"title": "<string>"
}
}
'