- URL:https://[root]/portal/[portalID]/certificates
- Operations:Register HTTPS Certificate, Unregister Certificate
- Child Resources:Certificate
Example usage
Below is a sample ArcGIS Online request URL used to access the certificates resource:
https://org.arcgis.com/sharing/rest/portals/0123456789ABCDEF/certificates?f=pjson
Description
List all custom certificates that are registered with an organization. This resource is available via HTTPS only.
Note:
This resource is only available for ArcGIS Online organizations.
Request parameters
Parameter | Details |
---|---|
f | The response format. The default format is html. Values: html | json | pjson |
Response properties
Property | Details |
---|---|
certificates | A JSON array of certificates that are registered with the organization, each with its id, name and url domain properties. 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"
}
]
}