Retrieve the full configuration details of an ADCS server

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

Get the individual ADCS server details

Request URL

https://{server-hostname}:8383/api/v1/mdm/adcs/servers/{ad_config_id}

Scope

MDMDeviceMgmt.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

AcceptstringMandatory
application/jsonapplication/jsonCopied!

- Path Parameters

ad_config_idstringMandatory

Unique identifier of the ADCS configuration. Use the ad_config_id from the Add ADCS Server API response

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomain/api/v1/mdm/adcs/servers/{ad_config_id} \
  --header 'Accept: application/json' \
  --header 'Authorization:  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
ad_config_idlong

Unique identifier of the newly created ADCS configuration

ad_config_namestring

Name of the ADCS configuration

cert_server_addressstring

URL of the ADCS server

cert_authoritystring

Common Name (CN) of the Certificate Authority

cert_template_namestring

Template name of the certificate

descriptionstring

Description of the ADCS server configuration

cert_exp_notify_threadinteger

Number of days before certificate expiry to notify

rsa_key_sizeinteger

RSA key size for the certificate. 0 = 1024, 1 = 2048, 2 = 4096

auto_renew_enabledboolean

Whether auto-renewal is enabled

allow_all_apps_to_accessboolean

Whether all apps can access the certificate

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

ADCS server configuration details

Copied!
  {
    "ad_config_name": "computer_1",
    "cert_authority": "CN=zylker-SERVER-CA2",
    "auto_renew_enabled": true,
    "cert_exp_notify_thread": 14,
    "allow_all_apps_to_access": true,
    "description": "ADCS server for computer certificates",
    "cert_template_name": "computer_1",
    "cert_server_address": "http://cert.zylker.com/certsrv/",
    "ad_config_id": 9007199254744896,
    "rsa_key_size": 1
  }
                
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.