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

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

Response

successful operation

more_resultsboolean

Example response

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

Changes