Endpoint
Authentication
Requires a Personal API Access Token.Header
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer {token} | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| projectName | string | Yes | Project name |
Query Parameters
None.Response
Success Response (200 OK)
Response Fields
| Field | Type | Description |
|---|---|---|
| success | boolean | Indicates if the request was successful |
| resultList | array[object] | List of certificates |
Certificate Object
| Field | Type | Description |
|---|---|---|
| name | string | Certificate name |
| description | string | Certificate description |
| certificateEnvironmentList | array[object] | List of certificate environments. See Certificate Environment Object |
Certificate Environment Object
| Field | Type | Description |
|---|---|---|
| environmentName | string | Environment name where certificate is deployed |
| startDate | string | Certificate start date in ISO 8601 format |
| endDate | string | Certificate expiration date in ISO 8601 format |
| base64EncodedContent | string | Base64-encoded certificate content |
| sha1Thumbprint | string | SHA-1 thumbprint of the certificate |
| subjectDn | string | Subject Distinguished Name (DN) of the certificate |
| alias | string | Certificate alias (unique per environment) |
Notes
- Certificate content is base64-encoded
- Each certificate can be deployed to multiple environments
- Each environment has its own alias
- Certificate file content is excluded from list response for performance
Error Response (401 Unauthorized)
Error Response (404 Not Found)
cURL Example
Notes and Warnings
-
Performance:
- Certificate file content is excluded from list response
- Use Get Certificate endpoint to retrieve full certificate details
-
Multiple Environments:
- Certificates can be deployed to multiple environments
- Each environment has separate certificate configuration
-
Alias Uniqueness:
- Alias must be unique per environment
- Same alias can be used in different environments
Permissions
User must have any permission in the project (read access).Related Documentation
- Get Certificate - Get a specific certificate
- Create Certificate - Create a new certificate

