getDriversLocationForGlobalMap
getDriversLocationForGlobalMap
Path Parameters
departmentUUID string required
departmentUUID
application/json
Request Body required
pickupDeliveryTripFilter
driverUUIDs string[]
endDate string
startDate string
statusList string[]
Responses
- 200
- 201
- 401
- 403
- 404
OK
*/*
Schema
Example (from schema)
Schema
driverLocationList object[]
error object
{
"driverLocationList": [
{
"completeDriverString": "string",
"currentLocation": {
"address": "string",
"latitudeDouble": 0,
"longitude": 0
},
"customerName": "string",
"customerUuid": "string",
"destination": {
"address": "string",
"latitudeDouble": 0,
"longitude": 0
},
"destinationAddress": "string",
"driverName": "string",
"driverUUID": "string",
"eventUUID": "string",
"internalRideType": "string",
"isHide": true,
"primaryDriverUUID": "string",
"rideType": "PICKUP_CUSTOMER",
"secondaryDriverUUID": "string",
"serviceAdvisorName": "string",
"source": {
"address": "string",
"latitudeDouble": 0,
"longitude": 0
},
"startTime": "2025-04-07T07:51:25.430Z",
"subRideType": "string",
"transportType": "string",
"tripStatus": "string",
"tripUUID": "string"
}
],
"error": {
"errorCode": "string",
"errorDescription": "string",
"metadata": {}
}
}
Created
Unauthorized
Forbidden
Not Found
POST /v3/department/:departmentUUID/global/driver/locations
Request
Request
curl / cURL
curl -L -X POST '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/global/driver/locations' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"driverUUIDs": [
"string"
],
"endDate": "string",
"startDate": "string",
"statusList": [
"string"
]
}'
python / requests
curl -L -X POST '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/global/driver/locations' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"driverUUIDs": [
"string"
],
"endDate": "string",
"startDate": "string",
"statusList": [
"string"
]
}'
go / native
curl -L -X POST '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/global/driver/locations' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"driverUUIDs": [
"string"
],
"endDate": "string",
"startDate": "string",
"statusList": [
"string"
]
}'
nodejs / axios
curl -L -X POST '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/global/driver/locations' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"driverUUIDs": [
"string"
],
"endDate": "string",
"startDate": "string",
"statusList": [
"string"
]
}'
ruby / Net::HTTP
curl -L -X POST '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/global/driver/locations' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"driverUUIDs": [
"string"
],
"endDate": "string",
"startDate": "string",
"statusList": [
"string"
]
}'
csharp / RestSharp
curl -L -X POST '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/global/driver/locations' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"driverUUIDs": [
"string"
],
"endDate": "string",
"startDate": "string",
"statusList": [
"string"
]
}'
php / cURL
curl -L -X POST '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/global/driver/locations' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"driverUUIDs": [
"string"
],
"endDate": "string",
"startDate": "string",
"statusList": [
"string"
]
}'
java / OkHttp
curl -L -X POST '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/global/driver/locations' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"driverUUIDs": [
"string"
],
"endDate": "string",
"startDate": "string",
"statusList": [
"string"
]
}'
powershell / RestMethod
curl -L -X POST '//api.mykaarma.com/pickupdelivery/v3/department/:departmentUUID/global/driver/locations' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"driverUUIDs": [
"string"
],
"endDate": "string",
"startDate": "string",
"statusList": [
"string"
]
}'