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
{
"globalAppointment": {
"appointmentCreationDateTime": "string",
"appointmentEndDateTime": "string",
"appointmentStartDateTime": "string",
"appointmentType": "string",
"appointmentUuid": "string",
"customerAddress": "string",
"customerUuid": "string",
"dealerUuid": "string",
"departmentUuid": "string",
"estimateSignatureStatus": "UNSIGNED",
"isValid": true,
"signatureCaptureUrl": "string",
"signedEstimatePdfUrl": "string",
"userUuid": "string",
"vehicleUuid": "string"
}
}
Unauthorized
Forbidden
Not Found
GET /v3/department/:departmentUUID/trip/:tripUUID
Request
Request
curl / cURL
curl -L -X GET '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/trip/:tripUUID' \
-H 'Accept: application/json'
python / requests
curl -L -X GET '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/trip/:tripUUID' \
-H 'Accept: application/json'
go / native
curl -L -X GET '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/trip/:tripUUID' \
-H 'Accept: application/json'
nodejs / axios
curl -L -X GET '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/trip/:tripUUID' \
-H 'Accept: application/json'
ruby / Net::HTTP
curl -L -X GET '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/trip/:tripUUID' \
-H 'Accept: application/json'
csharp / RestSharp
curl -L -X GET '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/trip/:tripUUID' \
-H 'Accept: application/json'
php / cURL
curl -L -X GET '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/trip/:tripUUID' \
-H 'Accept: application/json'
java / OkHttp
curl -L -X GET '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/trip/:tripUUID' \
-H 'Accept: application/json'
powershell / RestMethod
curl -L -X GET '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/trip/:tripUUID' \
-H 'Accept: application/json'