Skip To Content
ArcGIS Developer
Dashboard

/[certificateID]: Certificate

Example usage

Below 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

A certificate that is registered with an organization. This resource is available via HTTPS only.

Note:

This resource is only available for ArcGIS Online organizations.

Request parameters

ParameterDetails
f

The response format. The default format is html.

Values: html | json | pjson

Response properties

PropertyDetails
id

The ID of the registered certificate.

name

The certificate name.

domain

Server domain that the certificate is used for.

sslCertificate

Base64-encoded certificate text, enclosed between -----BEGIN CERTIFICATE----- and -----END CERTIFICATE-----.

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-----"
}