Unlink Driver Default Vehicle
curl --request DELETE \
--url https://api.connectedfleet.michelin.com/fleet-management/public/v1/customer/{customerId}/driver/{driverId}/vehicle \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.connectedfleet.michelin.com/fleet-management/public/v1/customer/{customerId}/driver/{driverId}/vehicle"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.connectedfleet.michelin.com/fleet-management/public/v1/customer/{customerId}/driver/{driverId}/vehicle', 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.connectedfleet.michelin.com/fleet-management/public/v1/customer/{customerId}/driver/{driverId}/vehicle",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.connectedfleet.michelin.com/fleet-management/public/v1/customer/{customerId}/driver/{driverId}/vehicle"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.connectedfleet.michelin.com/fleet-management/public/v1/customer/{customerId}/driver/{driverId}/vehicle")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.connectedfleet.michelin.com/fleet-management/public/v1/customer/{customerId}/driver/{driverId}/vehicle")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = 'Bearer <token>'
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
Unlink Driver Default Vehicle
DELETE request to unlink a driver to their default vehicle without having to specify the existing default vehicle. An error is returned in the following cases:
- there is no default vehicle assigned to the driver
DELETE
/
public
/
v1
/
customer
/
{customerId}
/
driver
/
{driverId}
/
vehicle
Unlink Driver Default Vehicle
curl --request DELETE \
--url https://api.connectedfleet.michelin.com/fleet-management/public/v1/customer/{customerId}/driver/{driverId}/vehicle \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.connectedfleet.michelin.com/fleet-management/public/v1/customer/{customerId}/driver/{driverId}/vehicle"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.connectedfleet.michelin.com/fleet-management/public/v1/customer/{customerId}/driver/{driverId}/vehicle', 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.connectedfleet.michelin.com/fleet-management/public/v1/customer/{customerId}/driver/{driverId}/vehicle",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.connectedfleet.michelin.com/fleet-management/public/v1/customer/{customerId}/driver/{driverId}/vehicle"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.connectedfleet.michelin.com/fleet-management/public/v1/customer/{customerId}/driver/{driverId}/vehicle")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.connectedfleet.michelin.com/fleet-management/public/v1/customer/{customerId}/driver/{driverId}/vehicle")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = 'Bearer <token>'
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
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
default - application/json;charset=UTF-8
default response
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
