For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI referenceRelease notes
DocumentationAPI referenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTAdd a new certificate
        • GETCheck if a specific gateway connection is healthy
        • POSTCreate a new gateway
        • POSTCreate a new service group
        • DELDelete a certificate by ID
        • DELDelete a gateway by ID
        • DELDelete service group
        • GETGet a certificate by its ID
        • GETGet gateway by ID
        • GETGet gateway service details
        • GETGet service group by ID
        • GETList all actively connected gateways
        • GETList all certificates
        • GETList all gateways
        • GETList all service groups
        • GETList all services
        • POSTRun a gateway service
        • GETSimple health check
        • GETThe version of app-gateway_manager
        • PUTUpdate a certificate by ID
        • PUTUpdate gateway
        • PATCHUpdate service group
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceGateway Manager

List all certificates

GET
http://localhost:3000/gateway_manager/v1/certificates
GET
/gateway_manager/v1/certificates
$curl http://localhost:3000/gateway_manager/v1/certificates \
> -u "<username>:<password>"
1{
2 "state": "Success",
3 "results": [
4 {
5 "_id": "66ff56c9fcbec46997145abd",
6 "certificate": "-----BEGIN CERTIFICATE--...",
7 "contract_id": "my-certificate-1",
8 "host": "localhost",
9 "issuer": "localhost",
10 "self_signed": true,
11 "type": "Root",
12 "validity": {
13 "notBefore": "2024-10-03T20:52:55.000Z",
14 "notAfter": "2025-10-03T20:52:55.000Z"
15 },
16 "gateways": [
17 "gateway_1"
18 ]
19 }
20 ]
21}
Returns all certificates from the certificate store.
Was this page helpful?
Previous

List all gateways

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Response

A list of all of the certificates that exist in the certificate store
statestringDefaults to Success
resultslist of objects

Errors

500
Internal Server Error