Pki Get Current Revoked Certificates

Pki Get Current Revoked Certificates

Current revoked certificates optionally revoked after a given date to allow indexing.

Privileges required:

READ OPERATOR_PKI

Request
URI
POST
https://{api_host}/portal/rest/pki/getCurrentRevokedCertificates
COPY
Request Body
{
    "afterRevocationDate": "string"
}
string As date-time As date-time
afterRevocationDate
Optional

afterRevocationDate

Responses
200

Request was successfully processed

Returns pki_get_current_revoked_certificates_result of type(s) application/json
{
    "revokedEdges": [
        {
            "id": 0,
            "revocationDate": "string",
            "csr": "string",
            "certificate": "string",
            "serialNumber": "string",
            "subjectKeyId": "string",
            "fingerPrint": "string",
            "fingerPrint256": "string",
            "validFrom": "string",
            "validTo": "string",
            "edgeLogicalId": "string",
            "edgeName": "string",
            "edgeSerialNumber": "string",
            "enterpriseLogicalId": "string",
            "enterpriseName": "string"
        }
    ],
    "revokedGateways": [
        {
            "id": 0,
            "revocationDate": "string",
            "csr": "string",
            "certificate": "string",
            "serialNumber": "string",
            "subjectKeyId": "string",
            "fingerPrint": "string",
            "fingerPrint256": "string",
            "validFrom": "string",
            "validTo": "string",
            "gatewayLogicalId": "string",
            "gatewayName": "string",
            "networkLogicalId": "string",
            "networkName": "string"
        }
    ]
}
array of revokedEdges
revokedEdges
Optional

revokedEdges

array of revokedGateways
revokedGateways
Optional

revokedGateways


400
Returns generic_400 of type(s) application/json
Operation doesn't return any data structure

500
Returns generic_500 of type(s) application/json
Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/portal/rest/pki/getCurrentRevokedCertificates