Skip to main content

SendingMessages

The API will send messages to groups and individuals.

If you are a go language developer ,to download the "sendmessage" SDK below:

POSThttps://open.debox.pro/openapi/messages/group/send

Send text messages to groups
Call example:

  curl -X POST -H "Content-Type: application/json" \
-H "X-API-KEY: t2XJ........lEF6" \
-d '{"group_id":"l3ixp32y","object_name":"text","title":"我是标题","content":"i am 富文本 \
{\"uitag\":\"a\",\"text\":\"点击我\",\"href\":\"https://debox.pro/\"}将跳转"}' \
"https://open.debox.pro/openapi/messages/group/send"

Parameters

app_id : String

X-API-KEY : String

nonce : String random number,length is 8

timestamp : String timestamp

signature : String sha1 signature

compute signature like this:

// keep sequence:appsecret -> nonce -> timestamp
signature = SHA1({appsecret}{nonce}{timestamp})
Query

group_id : String Group ID of a group. Indicates the group to which the message is sent, not empty

to_user_id : String User ID of the user. Indicates the user of the @ who. The value can be blank

object_name : String Indicates the message type. must be "text"

content : String Literal message string, non-empty

Responses

200: OK
{
"code":200,
"data":null,
"message":"success",
"success":false
}

POSThttps://open.debox.pro/openapi/messages/group/send

Rich text,suport text and image.
content contains texts and images
Example:

  curl -X POST -H "Content-Type: application/json" \
-H "X-API-KEY: t2XJ........lEF6" \
-d '{"group_id":"l3ixp32y","object_name":"richtext","title":"我是标题","content":"i am 富文本 \
{\"uitag\":\"a\",\"text\":\"点击我\",\"href\":\"https://debox.pro/\"}将跳转"}' \
"https://open.debox.pro/openapi/messages/group/send"

Parameters

Header

app_id : String

X-API-KEY : String

nonce : String random number,length is 8

timestamp : String timestamp

signature : String sha1 signature

compute signature like this:

// keep sequence:appsecret -> nonce -> timestamp
signature = SHA1({appsecret}{nonce}{timestamp})
Query

group_id : String Group ID of a group. Indicates the group to which the message is sent, not empty

to_user_id : String User ID of the user. Indicates the user of the @ who. The value can be blank

object_name : String The message type. must be richtext

title : String The title of the message

content : String The main part of the richtext message, which can insert hyperlinks and pictures


1、Hyperlink
Example: {"uitag":"a","text":"USDC","href":"https://debox.pro/deswap"}
Convert the following JSON into string and put it in Content. In the Debox APP, a hyperlink will be displayed
var uiA = {
uitag: "a",
text: text,
href: href,
}
"uitag"="a", Indicates a hyperlink.
text, The hyperlink text
href, The website address of the hyperlink

2、Colorful text
Example: {"uitag":"font","text":"15%","bold":"true","italic":"true","color":"#ff0000"}
"uitag"="font", Indicates a Colorful text,support bold(true/false)、italic(true/false)、color(RGB).
Convert the following JSON into string and put it in Content. "15%" will be displayed in bold、italic、blue.
var uiFont = {
Uitag: "font",
Text: "15%",
Color: "#0000ff",
Bold: "true",
Italic: "true",
}
3、Image
Example:{"uitag":"img","src":"https://domain.com/a.png","position":"foot","height":"500","href":""}
Convert the following JSON into string and put it in Content. In the Debox APP, a image hyperlink will be displayed
var uiImg = {
uitag: "img",
src: "<https://domain.com/a.png>",
position: "foot",
href: "<https://debox.pro>",
height: "500",
}
uitag="img" ,Indicates that it is a text image hyperlink
src:The image resource address
position:The position of the image,values are as follows:
head,It means that the picture is displayed at the top, in front of the title
foot,Indicates that the picture is displayed at the bottom
For other values, hide the picture without displaying anything
href,The hyperlink address of the image
When the white list address for DeBox, open it directly
When a non -white address, the bomb prompt warning box
When it is empty, or if there is no definition, display the enlarged picture
height: image height, values are as follows:
height> =0 ,image height is set to the value of height,
height<0、When the number is not configured or configured, the default value is used. The high default value of iOS, Android top picture is 115; the high default value of the bottom picture is 230
height=0, display nothing
3、A sample of the content:
coinName Price \n
{"uitag":"a","text":"USDT","href":"https://debox.pro/deswap"} 96.78k
{"uitag":"a","text":"USDC","href":"https://debox.pro/deswap"} 81.74k
{"uitag":"a","text":"OP_ETH","href":"https://debox.pro/deswap"} 2.55k
{"uitag":"a","text":"BNB","href":"https://debox.pro/deswap"} 3.95
{"uitag":"img","src":"https://domain.com/a.png","position":"head","height":”300”,"href":"https://www..."}
{"uitag":"img","src":"https://domain.com/b.png","position":"foot","height":"500","href":"https://www..."}
Display as follows:

pure text:
Docs Version Dropdown

image top,text bottom
Docs Version Dropdown

text top, image bottom:
Docs Version Dropdown

image top, text middle, image bottom :
Docs Version Dropdown

Responses

200: OK
{
"code":200,
"data":null,
"message":"success",
"success":false
}

POSThttps://open.debox.pro/openapi/messages/private/send

Send message to some user
Call example:


curl -X POST -H "Content-Type: application/json" \
-H "X-API-KEY: t2XAlEF6......" \
-d '{"to_user_id":"uvg2p6ho","object_name":"text","content":"i am message"}' \
"https://open.debox.pro/openapi/messages/private/send"

Parameters

Header

app_id : String

X-API-KEY : String

nonce : String random number,length is 8

timestamp : String timestamp

signature : String sha1 signature

compute signature like this:

// keep sequence:appsecret -> nonce -> timestamp
signature = SHA1({appsecret}{nonce}{timestamp})
Query

to_user_id : String Userid of the user. Indicates the recipient of the message. The value is not empty

object_name : String value is text or richtext

content : String The message content

Responses

200: OK
{
"code":200,
"data":null,
"message":"success",
"success":false
}