Update the details of a specific content token To modify VPP account
Request URL https://{server-hostname}:8383/api/mdm/apps/account/vpp/{vpp_id}
Scope
Header Authorization: d92d4xxxxxxxxxxxxx15f52
Request Parameters - Request Headers Content-Type string Mandatory
- Path Parameters - Request Body application/json JSON Object
Hide Sub-Attributes vpp_token_file long Optional
The unique ID of the updated server token file. Upload using Upload File
email_address string Optional
Email ID to receive notifications about the server token expiry date
Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request PUT \
--url https://appdomain/api/mdm/apps/account/vpp/{vpp_id} \
--header 'Accept: application/json' \
--header 'Authorization: d92d4xxxxxxxxxxxxx15f52' \
--header 'Content-Type: application/json' \
--data '{"vpp_token_file":121313,"email_address":"sysadmin@zylker.com"}'import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.io.IOException;
import java.net.http.HttpTimeoutException;
public class Main {
public static void main(String[] args) {
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://appdomain/api/mdm/apps/account/vpp/{vpp_id}"))
.header("Content-Type", "application/json")
.header("Accept", "application/json")
.header("Authorization", " d92d4xxxxxxxxxxxxx15f52")
.method("PUT", HttpRequest.BodyPublishers.ofString("{\"vpp_token_file\":121313,\"email_address\":\"sysadmin@zylker.com\"}"))
.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
import http.client
conn = http.client.HTTPSConnection("appdomain")
payload = "{\"vpp_token_file\":121313,\"email_address\":\"sysadmin@zylker.com\"}"
headers = {
'Content-Type': "application/json",
'Accept': "application/json",
'Authorization': " d92d4xxxxxxxxxxxxx15f52"
}
conn.request("PUT", "/api/mdm/apps/account/vpp/{vpp_id}", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
headersMap = Map();
headersMap.put("Content-Type", "application/json");
headersMap.put("Accept", "application/json");
data=Map();
data.put("vpp_token_file","1");
data.put("email_address","value");
response = invokeUrl
[
url: "https://appDomain/api/mdm/apps/account/vpp/{vpp_id}"
type: PUT
headers: headersMap
body: data
connection: connection_name
]
info response;
$headers=@{}
$headers.Add("Content-Type", "application/json")
$headers.Add("Accept", "application/json")
$headers.Add("Authorization", " d92d4xxxxxxxxxxxxx15f52")
$response = Invoke-WebRequest -Uri 'https://appdomain/api/mdm/apps/account/vpp/{vpp_id}' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{"vpp_token_file":121313,"email_address":"sysadmin@zylker.com"}'Sample Request Body Update VPP token file and notification email
Copied!
{
"vpp_token_file": 121313,
"email_address": "sysadmin@zylker.com"
}
▼ Show full
Sample Response: HTTP 202
Duration: 1 minute | Threshold: 60 | Lock period: 5 minutes
Duration - Time window for the threshold. Threshold - Number of API calls allowed within the specified duration. Lock Period - Wait time before consecutive API requests.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.