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 information about all available packages

GET

/graphite/configtool/packages

Requires System Admistration OR WorkSpace Administration permissions.

Request URL
https://api.{mas-instance-id}.{mas-domain}/graphite/configtool/packages?workspaceId=REPLACE_THIS_VALUE
Security
Parameters
Name
Description
  • workspaceId
    REQUIRED
    string
    (query)

    Workspace Id

  • Accept
    string
    (header)
    application/json
  • Responses
    • 200

      Retrieves list of all available packages

    • 401

      Authentication token is empty or invalid

    • 403

      Authenticated user is not permitted to make the request

    • 404

      The requested resource could not be found

    • 500

      An internal server error occured

    • 503

      Service Temporarily Unavailable

    Code snippet
      1curl --request GET \
      2  --url 'https://api.replace_mas-instance-id_variable.replace_mas-domain_variable/graphite/configtool/packages?workspaceId=REPLACE_THIS_VALUE' \
      3  --header 'accept: application/json'

        Example response

          1[
          2  {
          3    "packageid": "techmobile",
          4    "version": "1.0.0",
          5    "revision": 2,
          6    "name": "Tech Mobile",
          7    "timestamp": "2022-08-20T13:54:00",
          8    "checksum": "SHA-256 hash of the available file",
          9    "appid": "manage",
          10    "description": "Work Order tracking",
          11    "ismobile": "true"
          12  }
          13]