hello
I have two questions about methods within the IntuneRevocationClient class.
(1) About the DownloadCARevocationRequests method
I am executing a POST request to DOWNLOADREVOCATIONREQUESTS_URL (CertificateAuthorityRequests/downloadRevocationRequests) within the method, is there an API specification for the downloadRevocationRequests endpoint? .
What specific values should I set for the request parameters? , what value is returned as a response? I would like to know the details.
|
// Send the POST request to Intune |
|
JSONObject result = this.PostRequest(CONNECTOR_SERVICE_NAME, |
|
DOWNLOADREVOCATIONREQUESTS_URL, |
|
serviceVersion, |
|
requestBody, |
|
activityId, |
|
additionalHeaders); |
(2) About the UploadRevocationResults method
I am executing a POST request to the UPLOADREVOCATIONRESULTS_URL (CertificateAuthorityRequests/uploadRevocationResults) within the method, is there an API specification for the uploadRevocationResults endpoint? .
What specific values should I set for the request parameters? , what value is returned as a response? I would like to know the details.
I would also like to know what to call this method when I want to do it.
|
// Send the POST request to Intune |
|
JSONObject result = this.PostRequest(CONNECTOR_SERVICE_NAME, |
|
UPLOADREVOCATIONRESULTS_URL, |
|
serviceVersion, |
|
requestBody, |
|
activityId, |
|
additionalHeaders); |
Thank you.
hello
I have two questions about methods within the IntuneRevocationClient class.
(1) About the DownloadCARevocationRequests method
I am executing a POST request to DOWNLOADREVOCATIONREQUESTS_URL (CertificateAuthorityRequests/downloadRevocationRequests) within the method, is there an API specification for the downloadRevocationRequests endpoint? .
What specific values should I set for the request parameters? , what value is returned as a response? I would like to know the details.
Intune-Resource-Access/src/CsrValidation/java/lib/src/main/java/com/microsoft/intune/scepvalidation/IntuneRevocationClient.java
Lines 125 to 131 in eae184e
(2) About the UploadRevocationResults method
I am executing a POST request to the UPLOADREVOCATIONRESULTS_URL (CertificateAuthorityRequests/uploadRevocationResults) within the method, is there an API specification for the uploadRevocationResults endpoint? .
What specific values should I set for the request parameters? , what value is returned as a response? I would like to know the details.
I would also like to know what to call this method when I want to do it.
Intune-Resource-Access/src/CsrValidation/java/lib/src/main/java/com/microsoft/intune/scepvalidation/IntuneRevocationClient.java
Lines 166 to 172 in eae184e
Thank you.