List Trusted Certificates

List all trusted certificates.

List all trusted certs

GETyourpodURL.symphony.com/pod/v1/companycert/podmanaged/list
Query parameters
Header parameters
Response

Success

Body
companyCertAttributesCompanyCertAttributes (object)
companyCertInfoCompanyCertInfo (object)
Request
const response = await fetch('yourpodURL.symphony.com/pod/v1/companycert/podmanaged/list', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  [
    {
      "companyCertAttributes": {
        "name": "agentservice",
        "type": {
          "type": "USER"
        },
        "status": {
          "type": "TRUSTED"
        }
      },
      "companyCertInfo": {
        "fingerPrint": "300a...",
        "lastSeen": 0,
        "updatedAt": 0,
        "updatedBy": 0,
        "commonName": "agentservice",
        "expiryDate": 1781886755000
      }
    }
  ]
]

🚧 Roles and privilges

Calling this endpoint requires the USER_PROVISIONING or the SUPER_ADMINISTRATOR role. See Bot Permissions for a list of roles and associated privileges.

Last updated