v1
latestOpenAPI 3.0.12026-07-177949123.5 KBv1/certificate
Searches for certificates confirming given criteria.
Insert as many search criteria as needed. A reference about allowed values for criteria could be found below, under SearchCertificateCriteriaRestRequest model.
post/v1/certificate/search
Request body
Example request
{
"max_number_of_results": 10,
"criteria": [
{
"property": "CERTIFICATE_PROFILE",
"value": "ENDUSER",
"operation": "EQUAL"
}
]
}Response
Successful operation
Example response
[
{
"certificates": [
{
"certificate": "TUlJRFh6Q0NBLi4uZVcxWnJvMD0=",
"serial_number": "1234567890ABCDEF",
"response_format": "DER",
"certificate_chain": [
"ABC123efg...345xyz0="
],
"certificate_profile": "ENDUSER",
"end_entity_profile": "ExampleEEP"
}
]
}
]