IBM API Hub
Maximo Application Suite Admin APIs 9.0.x

By IBM Maximo

Provides REST APIs for performing Suite administration operations.


API reference

Retrieve login rejection message

GET

/messages/loginRejectionAppPoints

Requires System Administration permissions. Retrive the message displayed when a user's login request is rejected due to an insufficient number of available AppPoints. Default message is returned if a custom message is not defined. These default messages are stored in locale files in coreapi and returned using the default backend locale or the preferred locale in the header.

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

      Message response

    • 401

      Authentication token is empty or invalid

    • 500

      An internal server error occured

    Code snippet
      1curl --request GET \
      2  --url https://api.replace_mas-instance-id_variable.replace_mas-domain_variable/messages/loginRejectionAppPoints \
      3  --header 'Accept-Language: REPLACE_THIS_VALUE' \
      4  --header 'accept: application/json' \
      5  --header 'x-access-token: REPLACE_THIS_VALUE'

        Example response

          1{
          2  "message": "28"
          3}