Certificates

The Certificates API allows you to list and manage SSL certificates on your Access Gateway instance.

List all certificates

Lists all certificates configured in Access Gateway. This request returns a list of certificates with their details.

Responses
200

Success

401

Unauthorized

403

Forbidden

429

Too Many Requests

get/api/v2/certificates
Request samples
Response samples
application/json
[
  • {
    • "commonName": "string",
    • "expiresOn": "2019-08-24",
    • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    • "san": [
      ],
    • "selfSigned": true,
    • "validFrom": "2019-08-24",
    • "validityRemaining": 0
    }
]

Retrieve a certificate

Retrieves a certificate by certificateId

Request
path Parameters
certificateId
required
string <uuid>

Identifier of the certificate

Responses
200

Success

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

429

Too Many Requests

get/api/v2/certificates/{certificateId}
Request samples
Response samples
application/json
{
  • "commonName": "string",
  • "expiresOn": "2019-08-24",
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "san": [
    • "string"
    ],
  • "selfSigned": true,
  • "validFrom": "2019-08-24",
  • "validityRemaining": 0
}