# Create message

You can send a message to your user. Message content can be just plain text or HTML.

Hi <b>user</b>, enjoy our product!

The message will be shown as follow:

Hi user, enjoy our product!

POST /message/

Attributes Type Required Description
conversation integer yes A unique identifier for the conversation which is given by User.com automatically.
user integer yes A unique identifier for the agent which is given by User.com automatically.
content string yes A content of a message sent to the user.
source string no A source of your message (1 - chat, 2 - email, 3 - API, 4 - SMS, 5 - Slack).
source_context string no An additional context for your source (only visible for you).

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X POST -H "Authorization: Token <your_64_char_api_key>"
     -H "Accept: */*; version=2" -H "Content-Type: application/json" -d '{
    "conversation": 48553,
    "content": "Message sent using API",
    "user": 926,
    "source": 2,
    "source_context": {
      "name": "This is source_context used in API",
      "id": 123
    }
}' "https://<your_app_subdomain>.user.com/api/public/message/"

# Response

201 created