Retrieve the list of configured SCEP servers Get the List of SCEP server details
Request URL https://{server-hostname}:8383/api/v1/mdm/scep/servers
Scope
Header Authorization: d92d4xxxxxxxxxxxxx15f52
Request Parameters - Request Headers - Query Parameters search string Optional
Filter servers by name (partial match)
type string Optional
Filter by server type (comma-separated). 1=Microsoft SCEP, 2=EJBCA, 3=OpenXPKI, 4=Dogtag, 5=Custom, 101=Intune
pki_type string Optional
Filter by PKI type. 1=SCEP, 2=Certificate Authority
Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
--url 'https://appdomain/api/v1/mdm/scep/servers?search=SOME_STRING_VALUE&type=SOME_STRING_VALUE&pki_type=SOME_STRING_VALUE' \
--header 'Accept: application/json' \
--header 'Authorization: d92d4xxxxxxxxxxxxx15f52'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/v1/mdm/scep/servers?search=SOME_STRING_VALUE&type=SOME_STRING_VALUE&pki_type=SOME_STRING_VALUE"))
.header("Accept", "application/json")
.header("Authorization", " d92d4xxxxxxxxxxxxx15f52")
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
import http.client
conn = http.client.HTTPSConnection("appdomain")
headers = {
'Accept': "application/json",
'Authorization': " d92d4xxxxxxxxxxxxx15f52"
}
conn.request("GET", "/api/v1/mdm/scep/servers?search=SOME_STRING_VALUE&type=SOME_STRING_VALUE&pki_type=SOME_STRING_VALUE", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
parameters = "search=value" + "&" + "type=value" + "&" + "pki_type=value";
headersMap = Map();
headersMap.put("Accept", "application/json");
response = invokeUrl
[
url: "https://appDomain/api/v1/mdm/scep/servers" + "?" + parameters
type: GET
headers: headersMap
connection: connection_name
]
info response;
$headers=@{}
$headers.Add("Accept", "application/json")
$headers.Add("Authorization", " d92d4xxxxxxxxxxxxx15f52")
$response = Invoke-WebRequest -Uri 'https://appdomain/api/v1/mdm/scep/servers?search=SOME_STRING_VALUE&type=SOME_STRING_VALUE&pki_type=SOME_STRING_VALUE' -Method GET -Headers $headersResponse Parameters - HTTP code 200 Response Body - application/json JSON Object
Hide Sub-Attributes scep_servers JSON Array
Array of SCEP server objects
Show Sub-Attributes JSON Object
Show Sub-Attributes server_id string
Unique identifier of the created SCEP server. Use this ID when creating SCEP templates via Add SCEP Template
server_name string
Display name of the SCEP server
type string
SCEP server type. 1=Microsoft SCEP, 2=EJBCA, 3=OpenXPKI, 4=Dogtag, 5=Custom, 101=Intune
url string
URL of the SCEP server endpoint
ca_certificate_id string
Certificate ID of the CA certificate
ca_finger_print string
SHA-1 fingerprint of the CA certificate
adcs_doc_ack boolean
ADCS documentation acknowledgement flag
template_count string
Number of templates configured for this SCEP server
Possible Response Codes Sample Response: HTTP 200 List of configured SCEP servers
Copied!
{
"scep_servers": [
{
"ca_finger_print": "bf54330f3132d590d3d7c3e86ebc8563b5ea976e",
"server_name": "Sample",
"ca_certificate_id": "6967000000565073",
"adcs_doc_ack": false,
"template_count": "1",
"server_id": "6967000000599725",
"type": "1",
"url": "http://10.51.79.112/certSrv/mscep/mscep.dll"
}
]
}
▼ Show full
Duration: 1 minute | Threshold: 120 | 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.