IBM API Hub
Maximo Application Suite Admin APIs 9.0.x

By IBM Maximo

Provides REST APIs for performing Suite administration operations.


API reference

Get SSL certificates

POST

/utils/certlookup

Available to all authenticated users

Request URL
https://api.{mas-instance-id}.{mas-domain}/utils/certlookup
Security
apiKey
x-access-token
required in header
Parameters
Name
Description
  • Content-type
    string
    (header)
    application/json
  • Accept
    string
    (header)
    application/json
  • Request body
    Responses
    • 200

      Certificate list response format

    • 401

      Authentication token is empty or invalid

    • 404

      The requested resource could not be found

    • 500

      An internal server error occured

    Code snippet
      1curl --request POST \
      2  --url https://api.replace_mas-instance-id_variable.replace_mas-domain_variable/utils/certlookup \
      3  --header 'accept: application/json' \
      4  --header 'content-type: application/json' \
      5  --header 'x-access-token: REPLACE_THIS_VALUE' \
      6  --data REPLACE_REQUEST_BODY
      

        Example response

          1{
          2  "certificates": [
          3    {
          4      "alias": "ibm-cert-part-1",
          5      "crt": "-----BEGIN CERTIFICATE-----...-----END CERTIFICATE-----"
          6    }
          7  ]
          8}