- URL:
- https://[root]/portals/[portalID]/certificates/[certificateID]
- Methods:
GET
- Operations:
- Update HTTPS Certificate
Example usage
The following is a sample ArcGIS Online request URL for an individual certificate resource:
https://org.arcgis.com/sharing/rest/portals/0123456789ABCDEF/certificates/g5QWhBtSZveWDDdu?f=pjson
Description
The resource for an individual certificate that is 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 |
---|---|
| The ID of the registered certificate. |
| The certificate name. |
| Server domain that the certificate is used for. |
| Base64-encoded certificate text, enclosed between |
JSON Response syntax
{
"id": "<certificateId>",
"name": "<certificateName>",
"domain": "<domain>",
"sslCertificate": "<certificateText>"
}
JSON Response example
{
"id": "g5QWhBtSZveWDDdu",
"name": "mycert",
"domain": "example.com",
"sslCertificate": "-----BEGIN CERTIFICATE-----...-----END CERTIFICATE-----"
}