Text / Rich Media
Text messages allows you to send a simple text message with rich media content.
A Text Message consists of a simple text and has options of including rich media content.
post
http://server-v1.2mee.com/notification/create
Text message create
Shown below are the steps that you would go through if a Rich Media message was created using UI:




Example Curl command for creating a message:
$ curl 'http://server-v1.2mee.com/notification/create' -i -X POST -H 'Content-Type: application/json' -H 'Authorization: Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJ0ZXN0aW5ndGVhbUAybWVlLmNvbSIsImV4cCI6MTU4OTQ1NTc0OSwiaWF0IjoxNTg5NDM3NzQ5fQ.U2VtugGzqD0s9p0rUXaTxk8F5tHeMf5SB4ZRnYM8TV4QQm6y2FvdFIfD6kjQOhcYuPglSusAjVegzHqDKGgCqA' -d '{
"appId" : "bacb37d0-a51f-491b-bd68-489c245b8c16",
"title" : "Title of the Message",
"subtitle" : "SubTitle of the Message",
"text" : "Body of the Message",
"action" : "Open",
"fbTitle" : "FallBack Title of the Message",
"fbSubtitle" : "Fallback SubTitle of the Message",
"fbText" : "FallBack Text of the Message",
"expiry" : 1440,
"playTime" : 1582614107682,
"about" : [],
"filterId" : "9e862fc2-e3b6-4420-bf63-80ad4368ec88",
"priority" : "LOW",
"favourite" : 0,
"type" : "TEXT",
"channel" : "PUSH"
}'
put
http://server-v1.2mee.com/notification/update
Text message update
Click on the message to update it and then click the Save Draft button present at the bottom left corner after completion.


$ curl 'http://server-v1.2mee.com/notification/update' -i -X PUT -H 'Content-Type: application/json' -H 'Authorization: Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJ0ZXN0aW5ndGVhbUAybWVlLmNvbSIsImV4cCI6MTU4OTQ1NTc0OSwiaWF0IjoxNTg5NDM3NzQ5fQ.U2VtugGzqD0s9p0rUXaTxk8F5tHeMf5SB4ZRnYM8TV4QQm6y2FvdFIfD6kjQOhcYuPglSusAjVegzHqDKGgCqA' -d '{
"id" : "f4769c89-939b-4521-9435-5b3ce49d8fdb",
"title" : "Title of the Message",
"subtitle" : "SubTitle of the Message",
"text" : "Body of the Message",
"action" : "Open",
"fbTitle" : "updated FallBack Title of the Message",
"fbSubtitle" : "Fallback SubTitle of the Message",
"fbText" : "FallBack Text of the Message",
"expiry" : 1440,
"playTime" :1582614107682,
"about" : [ {
"key" : "__openExternalURL",
"value" : "https://2mee.com/"
} ],
"filterId" : "9e862fc2-e3b6-4420-bf63-80ad4368ec88",
"priority" : "LOW",
"favourite" : 0
}'
post
http://server-v1.2mee.com/notification/upload
Text message upload metadata
Below is an example of how this is done on the UI:


$ curl 'http://server-v1.2mee.com/notification/upload?id=notification/retarget?notificationId=f4769c89-939b-4521-9435-5b3ce49d8fdb&appId=bacb37d0-a51f-491b-bd68-489c245b8c16&engaged=ALLUSERS'
-i -X POST -H 'Authorization: Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJ0ZXN0aW5ndGVhbUAybWVlLmNvbSIsImV4cCI6MTU4OTQ1NTc0OSwiaWF0IjoxNTg5NDM3NzQ5fQ.U2VtugGzqD0s9p0rUXaTxk8F5tHeMf5SB4ZRnYM8TV4QQm6y2FvdFIfD6kjQOhcYuPglSusAjVegzHqDKGgCqA''
-i -X POST -H 'Content-Type: multipart/form-data' -H 'Authorization: Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJ0ZXN0aW5ndGVhbUAybWVlLmNvbSIsImV4cCI6MTU4OTQ1NTc0OSwiaWF0IjoxNTg5NDM3NzQ5fQ.U2VtugGzqD0s9p0rUXaTxk8F5tHeMf5SB4ZRnYM8TV4QQm6y2FvdFIfD6kjQOhcYuPglSusAjVegzHqDKGgCqA' -F '[email protected]_225bbed6-d7ca-4bad-99f1-df4bef1fe6dc.jpg;type=multipart/form-data' -F 'id=f4769c89-939b-4521-9435-5b3ce49d8fdb'
Last modified 6mo ago