- URL:
- https://[root]/portal/[portalID]/certificates
- Methods:
- GET
- Operations:
- Register HTTPS Certificate, Unregister Certificate
- Child Resources:
- Certificate
Example usage
The following is a sample ArcGIS Online request URL used to access the certificates resource:
https://org.arcgis.com/sharing/rest/portals/0123456789ABCDEF/certificates?f=pjsonDescription
The certificates resource lists all custom certificates that are registered with an organization. This resource is available via HTTPS only.
Request parameters
| Parameter | Details | 
|---|---|
| 
 | The response format. The default format is  Values:  | 
Response properties
| Property | Details | 
|---|---|
| 
 | A JSON array of certificates that are registered with the organization, each with its  Example  | 
JSON Response syntax
{
  "certificates": [
    {
      "id": "<certificateId1>",
      "name": "<certificateName1>",
      "url": "<domain1>"
    },
    {
      "id": "<certificateId2>",
      "name": "<certificateName2>",
      "url": "<domain2>"
    }
  ]
}JSON Response example
{
  "certificates": [
    {
      "id": "g5QWhBtSZveWDDdu",
      "name": "cert1",
      "url": "example.com"
    },
    {
      "id": "hui4TO1KxjAsNmkg",
      "name": "cert2",
      "url": "anotherexample.com"
    }
  ]
}