Retrieve Submitted Inspection Form
GEThttps://secure.fleetio.com/api/v1/submitted_inspection_forms/:id
Retrieve the details of an existing Submitted Inspection Form.
Submitting inspection forms through the API is not currently supported.
Request
Path Parameters
Possible values: Value must match regular expression ^[0-9]+$
The id of the relevant record
Responses
- 200
- 401
- 403
- 404
- 500
OK
- application/json
- Schema
- Example (auto)
Schema
Possible values: >= 1
The date and time at which this Inspection Form was started.
2023-03-14
The date and time at which this Inspection Form was submitted.
2023-03-14
The date on which this Inspection Form was submitted, formatted as "Mon DD, YYYY"
The number of failed items on this Inspection Form.
Possible values: >= 1
The latitude at which this Inspection Form was started.
The longitude at which this Inspection Form was started.
The latitude at which this Inspection Form was submitted.
The longitude at which this Inspection Form was submitted.
The duration of time in words (eg; 15 minutes, about 1 hour) between when this Inspection Form was started and when it was submitted.
inspection_form objectrequired
Possible values: >= 1
The full name of the User that submitted this Inspection Form.
submitted_inspection_items object[]required
The number of Comments
on this Inspection Form.
The number of images attached to this Inspection Form.
{
"id": 0,
"started_at": "2023-03-14",
"submitted_at": "2023-03-14",
"date": "string",
"failed_items": 0,
"vehicle_id": 0,
"starting_latitude": 0,
"starting_longitude": 0,
"submitted_latitude": 0,
"submitted_longitude": 0,
"duration": "string",
"inspection_form": {
"id": 0,
"title": "string",
"description": "string"
},
"contact_id": 0,
"user": "string",
"submitted_inspection_items": [
{
"result": {},
"id": 0,
"comments_count": 0,
"images_count": 0,
"submitted_inspection_form_id": 0,
"latitude": 0,
"longitude": 0,
"inspection_item": {
"label": "string",
"type": "InspectionDateItem",
"fail_label": "string",
"pass_label": "string",
"na_label": "string",
"dropdown_options": [
{
"label": "string",
"position": 0,
"fail_if_chosen": true
}
],
"numeric_range_max": 0,
"numeric_range_min": 0,
"requirement_settings": {}
}
}
],
"comments_count": 0,
"images_count": 0
}
Request could not be authenticated
- application/json
- Schema
- Example (auto)
Schema
Possible values: >= 400
and <= 599
A short, human-readable summary of the problem type. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"status": 0,
"title": "string",
"detail": "string",
"instance": "string"
}
Insufficient permission to perform this operation
- application/json
- Schema
- Example (auto)
Schema
Possible values: >= 400
and <= 599
A short, human-readable summary of the problem type. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"status": 0,
"title": "string",
"detail": "string",
"instance": "string"
}
The requested resource could not be located
- application/json
- Schema
- Example (auto)
Schema
Possible values: >= 400
and <= 599
A short, human-readable summary of the problem type. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"status": 0,
"title": "string",
"detail": "string",
"instance": "string"
}
Something unexpected happened
- application/json
- Schema
- Example (auto)
Schema
Possible values: >= 400
and <= 599
A short, human-readable summary of the problem type. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"status": 0,
"title": "string",
"detail": "string",
"instance": "string"
}
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: Prefix the value with "Token", for example: "Token 76cbe06c49a64". You can generate a new API key [here](https://secure.fleetio.com/api_keys).
name: Account-Tokentype: apiKeyin: headerdescription: You can find your Account-Token [here](https://secure.fleetio.com/api_keys)
- curl
- ruby
- python
- csharp
- go
- java
- nodejs
- php
- CURL
curl -L 'https://secure.fleetio.com/api/v1/submitted_inspection_forms/:id' \
-H 'Accept: application/json' \
-H 'Authorization: Token <Authorization>' \
-H 'Account-Token: <Authorization>'