# Retrieve the list of configured SCEP servers Get the List of SCEP server details ## Endpoint **GET** `/api/v1/mdm/scep/servers` ## Request URL `https://{server-hostname}:8383/api/v1/mdm/scep/servers` ## Scope `MDMDeviceMgmt.READ` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** (`string`, Mandatory): `application/json` ### 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 ## Sample Request ```curl 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' ``` ## Response Parameters ### HTTP Code 200 #### Response Body: `application/json` `JSON Object` - **scep_servers** (`JSON Array`): Array of SCEP server objects ## Possible Response Codes - **200** (`HTTP code`) ## Sample Response: HTTP 200 List of configured SCEP servers ```json { "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" } ] } ``` ## Rate Limit ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **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.