Skip to content
URL:
https://<root>/security/certificates/identity
Methods:
GET
Operations:
Import
Child Resources:
Certificate
Version Introduced:
10.9

Access requirements

Required privileges

The Enterprise Administrator API requires privilege-based access. An administrator must be assigned a specific user privilege, or role, to access any given endpoint. Listed below are the user privileges or roles an administrator can be assigned that provides access to this endpoint. If multiple privileges are listed, only one needs to be assigned to gain access.


Tokens

This API requires token-based authentication. A token is automatically generated for administrators who sign in to the Enterprise Administrator API directory's HTML interface. Tokens generated in this way are stored for the entirety of the session.

Those accessing the API directory outside of the HTML interface will need to acquire a session token from the generateToken operation in the Enterprise Directory API. For security reasons, all POST requests made to the Enterprise Administrator API must include a token in the request body.


Learn how to generate a token

Description

The identity resource lists all the certificates currently configured for an organization. This resource also provides access to child resources and operations that can be used to manage security certificates.

Request parameters

ParameterDetails

f

The response format. The default format is html.

Values: html | json | pjson

Example usage

The following is a sample request URL used to access the identity resource:

Use dark colors for code blocksCopy
1
https://organization.example.com/<context>/admin/security/certificates/identity?f=pjson

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
  "certificates": [
    {
      "validUntilAsEpoch": 1630685277000,
      "keyAlgorithm": "RSA",
      "serialNumber": "4400043ca7ef330d89ec73620a000300043ca7",
      "keySize": 2048,
      "subject": "CN=*.esri.com, OU=Dev, O=Esri, L=Redlands, ST=CA, C=US",
      "subjectAlternativeNames": ["DNSName: *.esri.com"],
      "sha1Fingerprint": "9ebb50cb94fada8857fa01b11c9139098e25a2d6",
      "validFrom": "Fri Jul 03 00:17:16 UTC 2020",
      "type": "IDENTITY",
      "version": 3,
      "md5Fingerprint": "f286d7d0abfe2753977fd8b2b864c070",
      "issuer": "CN=ESRI Enterprise Root, DC=empty, DC=local",
      "signatureAlgorithm": "SHA256withRSA",
      "keyUsage": [
        "Digital_Signature",
        "Key_Encipherment"
      ],
      "name": "ingress",
      "sha256Fingerprint": "d8bf703c476bc89f2ce0b511c06aa11cf9bcdc0242012ba27e96c03e40d1165d",
      "validUntil": "Fri Sep 03 16:07:57 UTC 2021",
      "id": "cwj8ud5zgli0qbm57z0x9",
      "validFromAsEpoch": 1593735436000
    },
    {
      "validUntilAsEpoch": 1933151563000,
      "keyAlgorithm": "RSA",
      "serialNumber": "178abe43781",
      "keySize": 2048,
      "subject": "CN=saml.default",
      "subjectAlternativeNames": [],
      "sha1Fingerprint": "75ea543024edc07116acde3d1df598416efd86c2",
      "validFrom": "Wed Apr 07 10:32:43 UTC 2021",
      "type": "IDENTITY",
      "version": 3,
      "md5Fingerprint": "116787abd37b628f4e5d7e044c2284fc",
      "issuer": "CN=saml.default",
      "signatureAlgorithm": "SHA256withRSA",
      "keyUsage": [],
      "name": "samlcert",
      "sha256Fingerprint": "064c9b092d17485285b4dbcf218a3d9ee27ff01dec75ad166036716ae5a5dbaa",
      "validUntil": "Sat Apr 05 10:32:43 UTC 2031",
      "id": "cc1mm3jpkfkhnkx243mp1",
      "validFromAsEpoch": 1617791563000
    }
  ]
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.