List Driver Details
curl --request GET \
--url https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/driver/{driverId} \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/driver/{driverId}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/driver/{driverId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/driver/{driverId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/driver/{driverId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/driver/{driverId}")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/driver/{driverId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"id": "<string>",
"customerId": "<string>",
"name": "<string>",
"active": true,
"activeDate": "2023-11-07T05:31:56Z",
"groupId": "<string>",
"groupName": "<string>",
"defaultVehicleId": "<string>",
"tempVehicleId": "<string>",
"tempVehicleExpiry": "2023-11-07T05:31:56Z",
"tempVehicleNextJourneyOnly": true,
"tempPrivateMode": true,
"tempPrivateModeExpiry": "2023-11-07T05:31:56Z",
"tempPrivateModeNextJourneyOnly": true,
"autoCreated": true,
"keys": [
{
"value": "key-value",
"type": "CARD",
"privateMode": true
}
],
"tags": [
"<string>"
],
"secondaryGroups": [
{
"id": "<string>",
"name": "<string>"
}
],
"externalId": "<string>"
}/driver
List Driver Details
Returns details for a driver including their default vehicle.
GET
/
public
/
v1
/
customer
/
{customerId}
/
driver
/
{driverId}
List Driver Details
curl --request GET \
--url https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/driver/{driverId} \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/driver/{driverId}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/driver/{driverId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/driver/{driverId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/driver/{driverId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/driver/{driverId}")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/driver/{driverId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"id": "<string>",
"customerId": "<string>",
"name": "<string>",
"active": true,
"activeDate": "2023-11-07T05:31:56Z",
"groupId": "<string>",
"groupName": "<string>",
"defaultVehicleId": "<string>",
"tempVehicleId": "<string>",
"tempVehicleExpiry": "2023-11-07T05:31:56Z",
"tempVehicleNextJourneyOnly": true,
"tempPrivateMode": true,
"tempPrivateModeExpiry": "2023-11-07T05:31:56Z",
"tempPrivateModeNextJourneyOnly": true,
"autoCreated": true,
"keys": [
{
"value": "key-value",
"type": "CARD",
"privateMode": true
}
],
"tags": [
"<string>"
],
"secondaryGroups": [
{
"id": "<string>",
"name": "<string>"
}
],
"externalId": "<string>"
}Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Response
Driver details were successfully returned
Pattern:
^[\w]*$Show child attributes
Show child attributes
Show child attributes
Show child attributes
Pattern:
^[a-zA-Z0-9]{0,25}$|Was this page helpful?
⌘I
