POST   messages

Creates an UI message.

Request example and description

Message

curl --request POST "https://api-asm1.apica.io/v3/messages?auth_ticket=C471ADC4-19B4-4219-BBF4-671A97EC653E" --header "Content-Type: application/json" --data-raw "{
  "text": "sample string 1",
  "message_is_from": "sample string 2",
  "from_date_utc": "2024-09-27T22:23:04",
  "to_date_utc": "2024-09-27T22:23:04",
  "importance": "L",
  "enabled": true,
  "customer_id": 1,
  "include_sub_customers": true
}"
NameType Required Description
textStringYes

Text of the message. You can use the following styling: Link ([link="link url"]Link Text[/link]), Bold ([b]Bold Text[/b]), Italic ([i]Italic Text[/i]), Italic and bold ([ib]Italic and Bold Text[/ib].

message_is_fromStringYes

Text about the message sender.

from_date_utcDateTimeYes

Message activity start date and time.

to_date_utcDateTimeYes

Message activity end date and time.

importanceStringNo

Message importance. Available values "L"/"H"/"C" ("Low","High","Critical"). Default value is 'L'.

enabledBooleanNo

Indicates whether the message is enabled or not. Default value is 'false'.

customer_idIntegerNo

Customer Id. Сustomer who’s users will get the message. For the customer administrators: if customer Id is not specified then message will be created for users of the current customer. For the root administrators: if customer Id is not specified then message will be created for all users of all customers.

include_sub_customersBooleanNo

Include sub-customers users as targets of the message. Default value is 'false'.