Update Vehicle
curl --request PUT \
--url https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/vehicle/{vehicleId} \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json;charset=UTF-8' \
--data '
{
"id": "<string>",
"name": "<string>",
"registration": "<string>",
"groupId": "<string>",
"groupName": "<string>",
"type": "<string>",
"make": "<string>",
"model": "<string>",
"tags": [
"<string>"
],
"defaultDriverId": "<string>",
"status": "<string>",
"assetCosts": {
"yearOfManufacture": 123,
"ownershipStartDate": "2023-12-25",
"ownershipEndDate": "2023-12-25",
"purchaseCost": 123,
"monthlyLeaseCost": 123,
"monthlyInsuranceCost": 123,
"monthlyMaintenanceCost": 123,
"scheduledMaintenanceAmount": 123,
"unscheduledMaintenanceAmount": 123,
"monthlyFuelCost": 123,
"mileageAuthorised": 123,
"costPerMileOverLimit": 123,
"costOfDisposal": 123,
"buyoutAmount": 123,
"costCurrency": "<string>"
},
"customerId": "<string>",
"secondaryGroups": [
{
"id": "<string>",
"name": "<string>"
}
]
}
'import requests
url = "https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/vehicle/{vehicleId}"
payload = {
"id": "<string>",
"name": "<string>",
"registration": "<string>",
"groupId": "<string>",
"groupName": "<string>",
"type": "<string>",
"make": "<string>",
"model": "<string>",
"tags": ["<string>"],
"defaultDriverId": "<string>",
"status": "<string>",
"assetCosts": {
"yearOfManufacture": 123,
"ownershipStartDate": "2023-12-25",
"ownershipEndDate": "2023-12-25",
"purchaseCost": 123,
"monthlyLeaseCost": 123,
"monthlyInsuranceCost": 123,
"monthlyMaintenanceCost": 123,
"scheduledMaintenanceAmount": 123,
"unscheduledMaintenanceAmount": 123,
"monthlyFuelCost": 123,
"mileageAuthorised": 123,
"costPerMileOverLimit": 123,
"costOfDisposal": 123,
"buyoutAmount": 123,
"costCurrency": "<string>"
},
"customerId": "<string>",
"secondaryGroups": [
{
"id": "<string>",
"name": "<string>"
}
]
}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json;charset=UTF-8"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {
Authorization: 'Basic <encoded-value>',
'Content-Type': 'application/json;charset=UTF-8'
},
body: JSON.stringify({
id: '<string>',
name: '<string>',
registration: '<string>',
groupId: '<string>',
groupName: '<string>',
type: '<string>',
make: '<string>',
model: '<string>',
tags: ['<string>'],
defaultDriverId: '<string>',
status: '<string>',
assetCosts: {
yearOfManufacture: 123,
ownershipStartDate: '2023-12-25',
ownershipEndDate: '2023-12-25',
purchaseCost: 123,
monthlyLeaseCost: 123,
monthlyInsuranceCost: 123,
monthlyMaintenanceCost: 123,
scheduledMaintenanceAmount: 123,
unscheduledMaintenanceAmount: 123,
monthlyFuelCost: 123,
mileageAuthorised: 123,
costPerMileOverLimit: 123,
costOfDisposal: 123,
buyoutAmount: 123,
costCurrency: '<string>'
},
customerId: '<string>',
secondaryGroups: [{id: '<string>', name: '<string>'}]
})
};
fetch('https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/vehicle/{vehicleId}', 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}/vehicle/{vehicleId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'id' => '<string>',
'name' => '<string>',
'registration' => '<string>',
'groupId' => '<string>',
'groupName' => '<string>',
'type' => '<string>',
'make' => '<string>',
'model' => '<string>',
'tags' => [
'<string>'
],
'defaultDriverId' => '<string>',
'status' => '<string>',
'assetCosts' => [
'yearOfManufacture' => 123,
'ownershipStartDate' => '2023-12-25',
'ownershipEndDate' => '2023-12-25',
'purchaseCost' => 123,
'monthlyLeaseCost' => 123,
'monthlyInsuranceCost' => 123,
'monthlyMaintenanceCost' => 123,
'scheduledMaintenanceAmount' => 123,
'unscheduledMaintenanceAmount' => 123,
'monthlyFuelCost' => 123,
'mileageAuthorised' => 123,
'costPerMileOverLimit' => 123,
'costOfDisposal' => 123,
'buyoutAmount' => 123,
'costCurrency' => '<string>'
],
'customerId' => '<string>',
'secondaryGroups' => [
[
'id' => '<string>',
'name' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json;charset=UTF-8"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/vehicle/{vehicleId}"
payload := strings.NewReader("{\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"registration\": \"<string>\",\n \"groupId\": \"<string>\",\n \"groupName\": \"<string>\",\n \"type\": \"<string>\",\n \"make\": \"<string>\",\n \"model\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"defaultDriverId\": \"<string>\",\n \"status\": \"<string>\",\n \"assetCosts\": {\n \"yearOfManufacture\": 123,\n \"ownershipStartDate\": \"2023-12-25\",\n \"ownershipEndDate\": \"2023-12-25\",\n \"purchaseCost\": 123,\n \"monthlyLeaseCost\": 123,\n \"monthlyInsuranceCost\": 123,\n \"monthlyMaintenanceCost\": 123,\n \"scheduledMaintenanceAmount\": 123,\n \"unscheduledMaintenanceAmount\": 123,\n \"monthlyFuelCost\": 123,\n \"mileageAuthorised\": 123,\n \"costPerMileOverLimit\": 123,\n \"costOfDisposal\": 123,\n \"buyoutAmount\": 123,\n \"costCurrency\": \"<string>\"\n },\n \"customerId\": \"<string>\",\n \"secondaryGroups\": [\n {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
req.Header.Add("Content-Type", "application/json;charset=UTF-8")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/vehicle/{vehicleId}")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json;charset=UTF-8")
.body("{\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"registration\": \"<string>\",\n \"groupId\": \"<string>\",\n \"groupName\": \"<string>\",\n \"type\": \"<string>\",\n \"make\": \"<string>\",\n \"model\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"defaultDriverId\": \"<string>\",\n \"status\": \"<string>\",\n \"assetCosts\": {\n \"yearOfManufacture\": 123,\n \"ownershipStartDate\": \"2023-12-25\",\n \"ownershipEndDate\": \"2023-12-25\",\n \"purchaseCost\": 123,\n \"monthlyLeaseCost\": 123,\n \"monthlyInsuranceCost\": 123,\n \"monthlyMaintenanceCost\": 123,\n \"scheduledMaintenanceAmount\": 123,\n \"unscheduledMaintenanceAmount\": 123,\n \"monthlyFuelCost\": 123,\n \"mileageAuthorised\": 123,\n \"costPerMileOverLimit\": 123,\n \"costOfDisposal\": 123,\n \"buyoutAmount\": 123,\n \"costCurrency\": \"<string>\"\n },\n \"customerId\": \"<string>\",\n \"secondaryGroups\": [\n {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/vehicle/{vehicleId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json;charset=UTF-8'
request.body = "{\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"registration\": \"<string>\",\n \"groupId\": \"<string>\",\n \"groupName\": \"<string>\",\n \"type\": \"<string>\",\n \"make\": \"<string>\",\n \"model\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"defaultDriverId\": \"<string>\",\n \"status\": \"<string>\",\n \"assetCosts\": {\n \"yearOfManufacture\": 123,\n \"ownershipStartDate\": \"2023-12-25\",\n \"ownershipEndDate\": \"2023-12-25\",\n \"purchaseCost\": 123,\n \"monthlyLeaseCost\": 123,\n \"monthlyInsuranceCost\": 123,\n \"monthlyMaintenanceCost\": 123,\n \"scheduledMaintenanceAmount\": 123,\n \"unscheduledMaintenanceAmount\": 123,\n \"monthlyFuelCost\": 123,\n \"mileageAuthorised\": 123,\n \"costPerMileOverLimit\": 123,\n \"costOfDisposal\": 123,\n \"buyoutAmount\": 123,\n \"costCurrency\": \"<string>\"\n },\n \"customerId\": \"<string>\",\n \"secondaryGroups\": [\n {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"name": "<string>",
"registration": "<string>",
"groupId": "<string>",
"groupName": "<string>",
"type": "<string>",
"make": "<string>",
"model": "<string>",
"tags": [
"<string>"
],
"defaultDriverId": "<string>",
"status": "<string>",
"assetCosts": {
"yearOfManufacture": 123,
"ownershipStartDate": "2023-12-25",
"ownershipEndDate": "2023-12-25",
"purchaseCost": 123,
"monthlyLeaseCost": 123,
"monthlyInsuranceCost": 123,
"monthlyMaintenanceCost": 123,
"scheduledMaintenanceAmount": 123,
"unscheduledMaintenanceAmount": 123,
"monthlyFuelCost": 123,
"mileageAuthorised": 123,
"costPerMileOverLimit": 123,
"costOfDisposal": 123,
"buyoutAmount": 123,
"costCurrency": "<string>"
},
"customerId": "<string>",
"secondaryGroups": [
{
"id": "<string>",
"name": "<string>"
}
]
}/vehicle
Update Vehicle
PUT request to update the details for an existing vehicle. This is a partial update and only those values specified will be updated.
PUT
/
public
/
v1
/
customer
/
{customerId}
/
vehicle
/
{vehicleId}
Update Vehicle
curl --request PUT \
--url https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/vehicle/{vehicleId} \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json;charset=UTF-8' \
--data '
{
"id": "<string>",
"name": "<string>",
"registration": "<string>",
"groupId": "<string>",
"groupName": "<string>",
"type": "<string>",
"make": "<string>",
"model": "<string>",
"tags": [
"<string>"
],
"defaultDriverId": "<string>",
"status": "<string>",
"assetCosts": {
"yearOfManufacture": 123,
"ownershipStartDate": "2023-12-25",
"ownershipEndDate": "2023-12-25",
"purchaseCost": 123,
"monthlyLeaseCost": 123,
"monthlyInsuranceCost": 123,
"monthlyMaintenanceCost": 123,
"scheduledMaintenanceAmount": 123,
"unscheduledMaintenanceAmount": 123,
"monthlyFuelCost": 123,
"mileageAuthorised": 123,
"costPerMileOverLimit": 123,
"costOfDisposal": 123,
"buyoutAmount": 123,
"costCurrency": "<string>"
},
"customerId": "<string>",
"secondaryGroups": [
{
"id": "<string>",
"name": "<string>"
}
]
}
'import requests
url = "https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/vehicle/{vehicleId}"
payload = {
"id": "<string>",
"name": "<string>",
"registration": "<string>",
"groupId": "<string>",
"groupName": "<string>",
"type": "<string>",
"make": "<string>",
"model": "<string>",
"tags": ["<string>"],
"defaultDriverId": "<string>",
"status": "<string>",
"assetCosts": {
"yearOfManufacture": 123,
"ownershipStartDate": "2023-12-25",
"ownershipEndDate": "2023-12-25",
"purchaseCost": 123,
"monthlyLeaseCost": 123,
"monthlyInsuranceCost": 123,
"monthlyMaintenanceCost": 123,
"scheduledMaintenanceAmount": 123,
"unscheduledMaintenanceAmount": 123,
"monthlyFuelCost": 123,
"mileageAuthorised": 123,
"costPerMileOverLimit": 123,
"costOfDisposal": 123,
"buyoutAmount": 123,
"costCurrency": "<string>"
},
"customerId": "<string>",
"secondaryGroups": [
{
"id": "<string>",
"name": "<string>"
}
]
}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json;charset=UTF-8"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {
Authorization: 'Basic <encoded-value>',
'Content-Type': 'application/json;charset=UTF-8'
},
body: JSON.stringify({
id: '<string>',
name: '<string>',
registration: '<string>',
groupId: '<string>',
groupName: '<string>',
type: '<string>',
make: '<string>',
model: '<string>',
tags: ['<string>'],
defaultDriverId: '<string>',
status: '<string>',
assetCosts: {
yearOfManufacture: 123,
ownershipStartDate: '2023-12-25',
ownershipEndDate: '2023-12-25',
purchaseCost: 123,
monthlyLeaseCost: 123,
monthlyInsuranceCost: 123,
monthlyMaintenanceCost: 123,
scheduledMaintenanceAmount: 123,
unscheduledMaintenanceAmount: 123,
monthlyFuelCost: 123,
mileageAuthorised: 123,
costPerMileOverLimit: 123,
costOfDisposal: 123,
buyoutAmount: 123,
costCurrency: '<string>'
},
customerId: '<string>',
secondaryGroups: [{id: '<string>', name: '<string>'}]
})
};
fetch('https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/vehicle/{vehicleId}', 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}/vehicle/{vehicleId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'id' => '<string>',
'name' => '<string>',
'registration' => '<string>',
'groupId' => '<string>',
'groupName' => '<string>',
'type' => '<string>',
'make' => '<string>',
'model' => '<string>',
'tags' => [
'<string>'
],
'defaultDriverId' => '<string>',
'status' => '<string>',
'assetCosts' => [
'yearOfManufacture' => 123,
'ownershipStartDate' => '2023-12-25',
'ownershipEndDate' => '2023-12-25',
'purchaseCost' => 123,
'monthlyLeaseCost' => 123,
'monthlyInsuranceCost' => 123,
'monthlyMaintenanceCost' => 123,
'scheduledMaintenanceAmount' => 123,
'unscheduledMaintenanceAmount' => 123,
'monthlyFuelCost' => 123,
'mileageAuthorised' => 123,
'costPerMileOverLimit' => 123,
'costOfDisposal' => 123,
'buyoutAmount' => 123,
'costCurrency' => '<string>'
],
'customerId' => '<string>',
'secondaryGroups' => [
[
'id' => '<string>',
'name' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json;charset=UTF-8"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/vehicle/{vehicleId}"
payload := strings.NewReader("{\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"registration\": \"<string>\",\n \"groupId\": \"<string>\",\n \"groupName\": \"<string>\",\n \"type\": \"<string>\",\n \"make\": \"<string>\",\n \"model\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"defaultDriverId\": \"<string>\",\n \"status\": \"<string>\",\n \"assetCosts\": {\n \"yearOfManufacture\": 123,\n \"ownershipStartDate\": \"2023-12-25\",\n \"ownershipEndDate\": \"2023-12-25\",\n \"purchaseCost\": 123,\n \"monthlyLeaseCost\": 123,\n \"monthlyInsuranceCost\": 123,\n \"monthlyMaintenanceCost\": 123,\n \"scheduledMaintenanceAmount\": 123,\n \"unscheduledMaintenanceAmount\": 123,\n \"monthlyFuelCost\": 123,\n \"mileageAuthorised\": 123,\n \"costPerMileOverLimit\": 123,\n \"costOfDisposal\": 123,\n \"buyoutAmount\": 123,\n \"costCurrency\": \"<string>\"\n },\n \"customerId\": \"<string>\",\n \"secondaryGroups\": [\n {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
req.Header.Add("Content-Type", "application/json;charset=UTF-8")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/vehicle/{vehicleId}")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json;charset=UTF-8")
.body("{\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"registration\": \"<string>\",\n \"groupId\": \"<string>\",\n \"groupName\": \"<string>\",\n \"type\": \"<string>\",\n \"make\": \"<string>\",\n \"model\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"defaultDriverId\": \"<string>\",\n \"status\": \"<string>\",\n \"assetCosts\": {\n \"yearOfManufacture\": 123,\n \"ownershipStartDate\": \"2023-12-25\",\n \"ownershipEndDate\": \"2023-12-25\",\n \"purchaseCost\": 123,\n \"monthlyLeaseCost\": 123,\n \"monthlyInsuranceCost\": 123,\n \"monthlyMaintenanceCost\": 123,\n \"scheduledMaintenanceAmount\": 123,\n \"unscheduledMaintenanceAmount\": 123,\n \"monthlyFuelCost\": 123,\n \"mileageAuthorised\": 123,\n \"costPerMileOverLimit\": 123,\n \"costOfDisposal\": 123,\n \"buyoutAmount\": 123,\n \"costCurrency\": \"<string>\"\n },\n \"customerId\": \"<string>\",\n \"secondaryGroups\": [\n {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.masternautconnect.com/connect-webservices/services/public/v1/customer/{customerId}/vehicle/{vehicleId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json;charset=UTF-8'
request.body = "{\n \"id\": \"<string>\",\n \"name\": \"<string>\",\n \"registration\": \"<string>\",\n \"groupId\": \"<string>\",\n \"groupName\": \"<string>\",\n \"type\": \"<string>\",\n \"make\": \"<string>\",\n \"model\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"defaultDriverId\": \"<string>\",\n \"status\": \"<string>\",\n \"assetCosts\": {\n \"yearOfManufacture\": 123,\n \"ownershipStartDate\": \"2023-12-25\",\n \"ownershipEndDate\": \"2023-12-25\",\n \"purchaseCost\": 123,\n \"monthlyLeaseCost\": 123,\n \"monthlyInsuranceCost\": 123,\n \"monthlyMaintenanceCost\": 123,\n \"scheduledMaintenanceAmount\": 123,\n \"unscheduledMaintenanceAmount\": 123,\n \"monthlyFuelCost\": 123,\n \"mileageAuthorised\": 123,\n \"costPerMileOverLimit\": 123,\n \"costOfDisposal\": 123,\n \"buyoutAmount\": 123,\n \"costCurrency\": \"<string>\"\n },\n \"customerId\": \"<string>\",\n \"secondaryGroups\": [\n {\n \"id\": \"<string>\",\n \"name\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"name": "<string>",
"registration": "<string>",
"groupId": "<string>",
"groupName": "<string>",
"type": "<string>",
"make": "<string>",
"model": "<string>",
"tags": [
"<string>"
],
"defaultDriverId": "<string>",
"status": "<string>",
"assetCosts": {
"yearOfManufacture": 123,
"ownershipStartDate": "2023-12-25",
"ownershipEndDate": "2023-12-25",
"purchaseCost": 123,
"monthlyLeaseCost": 123,
"monthlyInsuranceCost": 123,
"monthlyMaintenanceCost": 123,
"scheduledMaintenanceAmount": 123,
"unscheduledMaintenanceAmount": 123,
"monthlyFuelCost": 123,
"mileageAuthorised": 123,
"costPerMileOverLimit": 123,
"costOfDisposal": 123,
"buyoutAmount": 123,
"costCurrency": "<string>"
},
"customerId": "<string>",
"secondaryGroups": [
{
"id": "<string>",
"name": "<string>"
}
]
}Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/json;charset=UTF-8
Vehicle cost information including purchase, lease, maintenance, and operational costs.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Response
updated asset with correct values
Vehicle cost information including purchase, lease, maintenance, and operational costs.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?
⌘I
