Fetch minimal trip
End-point to fetch minimal trip details using the trip's identifier. This is used for customer facing app to fetch minimal details like appointment time, trip's identifier, customer's identifier of a trip.
Path Parameters
departmentUUID string required
Unique identifier for a department
tripUUID string required
Unique identifier for a trip
Header Parameters
authorization string required
Base64 encoded basic auth
Responses
- 200
- 401
- 403
- 404
OK
application/json
Schema
Example (from schema)
Schema
globalAppointment object
appointmentCreationDateTime string
appointmentEndDateTime string
appointmentStartDateTime string
appointmentType string
appointmentUuid string
customerAddress string
customerUuid string
dealerUuid string
departmentUuid string
isValid boolean
userUuid string
vehicleUuid string
{
"globalAppointment": {
"appointmentCreationDateTime": "string",
"appointmentEndDateTime": "string",
"appointmentStartDateTime": "string",
"appointmentType": "string",
"appointmentUuid": "string",
"customerAddress": "string",
"customerUuid": "string",
"dealerUuid": "string",
"departmentUuid": "string",
"isValid": true,
"userUuid": "string",
"vehicleUuid": "string"
}
}
Unauthorized
Forbidden
Not Found
Loading...