Skip to content

List a certificate's SANs

GET
/api/organizations/{organizationId}/certificates/{certificateId}/sans

Returns the Subject Alternative Names (SANs) attached to the certificate. Each entry includes its DNS validation status and SSL coverage status.

Authorizations

ApiToken

Long-lived API token created via POST /api/api-tokens (returned once in plaintext).

Type
API Key (header: X-API-TOKEN)
or
JWT

JWT access token obtained via POST /api/auth/login. Send as: Authorization: Bearer .

Type
HTTP (bearer)

Parameters

Path Parameters

organizationId*

Organization identifier

Type
string
Required
certificateId*

Certificate identifier

Type
string
Required

Query Parameters

page

The collection page number

Type
integer
Default
1
itemsPerPage

The number of items per page

Type
integer
Default
30
Minimum
0
Maximum
100

Responses

certificate-san collection

JSON
{
  
"totalItems": 0,
  
"search": {
  
  
"@type": "string",
  
  
"template": "string",
  
  
"variableRepresentation": "string",
  
  
"mapping": [
  
  
  
{
  
  
  
  
"@type": "string",
  
  
  
  
"variable": "string",
  
  
  
  
"property": "string",
  
  
  
  
"required": true
  
  
  
}
  
  
]
  
},
  
"view": {
  
  
"@id": "string",
  
  
"@type": "string",
  
  
"first": "string",
  
  
"last": "string",
  
  
"previous": "string",
  
  
"next": "string"
  
},
  
"member": [
  
  
{
  
  
  
"@context": "string",
  
  
  
"@id": "string",
  
  
  
"@type": "string",
  
  
  
"id": "9d1e8a4c-6b2f-4d3e-8a1b-2c3d4e5f6a7b",
  
  
  
"name": "www.example.com",
  
  
  
"dnsStatus": "valid",
  
  
  
"dnsLastCheckedAt": "2026-07-01T12:00:00+00:00",
  
  
  
"dnsNextCheckAt": "2026-07-02T12:00:00+00:00",
  
  
  
"sslStatus": "covered",
  
  
  
"createdAt": "2026-07-01T12:00:00+00:00",
  
  
  
"updatedAt": "2026-07-01T12:00:00+00:00"
  
  
}
  
]
}

Playground

Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI