v1

latestOpenAPI 3.0.12026-07-177949123.5 KB
v1/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

max_number_of_resultsinteger

Maximum number of results

Example request

{
  "max_number_of_results": 10,
  "criteria": [
    {
      "property": "CERTIFICATE_PROFILE",
      "value": "ENDUSER",
      "operation": "EQUAL"
    }
  ]
}

Response

Successful operation

more_resultsboolean

Example response

[
  {
    "certificates": [
      {
        "certificate": "TUlJRFh6Q0NBLi4uZVcxWnJvMD0=",
        "serial_number": "1234567890ABCDEF",
        "response_format": "DER",
        "certificate_chain": [
          "ABC123efg...345xyz0="
        ],
        "certificate_profile": "ENDUSER",
        "end_entity_profile": "ExampleEEP"
      }
    ]
  }
]