IBM API Hub
Maximo Application Suite Admin APIs 9.0.x

By IBM Maximo

Provides REST APIs for performing Suite administration operations.


API reference

Add a new customization

POST

/customizations

Requires System Administration permission.

Request URL
https://api.{mas-instance-id}.{mas-domain}/customizations
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
    • 201

      MAS customization

    • 400

      Bad Request

    • 401

      Authentication token is empty or invalid

    • 403

      Authenticated user is not permitted to make the request

    • 409

      Conflict Response:

    • 500

      An internal server error occured

    Code snippet
      1curl --request POST \
      2  --url https://api.replace_mas-instance-id_variable.replace_mas-domain_variable/customizations \
      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  "id": "AcmeAdminUI",
          3  "metadata": {
          4    "enableAnonymousAccess": false,
          5    "companyName": "Acme Co",
          6    "productName": "Acme Product"
          7  },
          8  "images": {
          9    "id": 8171152568483840
          10  },
          11  "css": {
          12    "id": 6369877172420608
          13  },
          14  "js": {
          15    "id": 7757783480926208
          16  },
          17  "files": {
          18    "id": 602383723790336
          19  }
          20}