v1

latestOpenAPI 3.0.12026-07-177949123.5 KB
v1/endentity

Searches for end entity confirming given criteria.

Insert as many search criteria as needed. A reference about allowed values for criteria could be found below, under SearchEndEntityCriteriaRestRequest model.

post/v1/endentity/search

Request body

max_number_of_resultsinteger

Maximum number of results

current_pageinteger

Current page number

Example request

{
  "max_number_of_results": 10,
  "criteria": [
    {
      "value": "exampleUsername"
    }
  ]
}

Response

Successful operation

more_resultsboolean

Example response

{
  "end_entities": [
    {
      "username": "JohnDoe",
      "dn": "CN=John Doe,SURNAME=Doe,GIVENNAME=John,C=SE",
      "subject_alt_name": "rfc822Name=john.doe@example.com",
      "email": "john.doe@example.com",
      "status": "NEW",
      "token": "P12",
      "extension_data": [
        {
          "name": "1.3.6.1.5.5.7.1.24",
          "value": "3003020105"
        }
      ]
    }
  ]
}