ارسال ساده

آدرس فراخوانی :

پارامترهای ورودی :

#فیلدنامvalidationsنوع
1fromشماره فرستندهاز شماره های تایید شده در پنل شماinteger
2messageمتن پیاممتن پیام بیش از ۵۰۰ کاراکتر نباشد
string
۳numbersآرایه ای از گیرندگانتعداد گیرندگان حداکثر ۳۰۰ شمارهarray

برای مثال ۲ حالت ارسال در زیر بیان شده است:

json :
{
    "from":"+98simcard",
    "message":"متن پیام ",
    "numbers":["0912...","0912..."]
}
form-data :
from = "+98simcard"
message = "متن پیام "
numbers = ["0912...","0912..."]

پاسخ:

json :
{
    "success": true,
    "data": {
        "id": 12345,
        "message": "متن پیام ",
        "time": 1538896812
    }
}

success

در صورتی که مقدار آن true باشد پاسخ درخواست شما موفقیت آمیز بوده است.

data

حاوی اطلاعات پیام ثبت شده

#فیلدنامنوع
1idشناسه پیامinteger
2messageمتن پیامstring
۳timeزمان ثبتinteger
نمونه کد
    

curl –location ‘https://panel.signalads.com/core/rest/api/v1/message/send.json’ \
–header ‘Accept: application/json’ \
–header ‘Content-Type: application/json’ \
–header ‘Authorization: Bearer TOKEN’ \
–data ‘{
“from”:”+98simcard”,
“message”:”متن پیام “,
“numbers”:[“0912…”,”0912…”]
}’

    

$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => ‘https://panel.signalads.com/core/rest/api/v1/message/send.json’,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => ”,
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => ‘POST’,
CURLOPT_POSTFIELDS => json_encode([
“from” => “+98simcard”,
“message” => “متن پیام”,
“numbers” => [“0912…”, “0912…”]
]),
CURLOPT_HTTPHEADER => array(
‘Accept: application/json’,
‘Content-Type: application/json’,
‘Authorization: Bearer TOKEN’
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;

    

import http.client
import json

conn = http.client.HTTPSConnection(“panel.signalads.com”)
payload = json.dumps({
“from”: “+98simcard”,
“message”: “متن پیام “,
“numbers”: [
“0912…”,
“0912…”
]
})
headers = {
‘Accept’: ‘application/json’,
‘Content-Type’: ‘application/json’,
‘Authorization’: ‘Bearer TOKEN’
}
conn.request(“POST”, “/core/rest/api/v1/message/send.json”, payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode(“utf-8”))

    

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, “https://panel.signalads.com/core/rest/api/v1/message/send.json”);
request.Headers.Add(“Accept”, “application/json”);
request.Headers.Add(“Authorization”, “Bearer TOKEN”);
var content = new StringContent(“{\n \”from\”:\”+98simcard\”,\n \”message\”:\”متن پیام \”,\n \”numbers\”:[\”0912…\”,\”0912…\”]\n}”, null, “application/json”);
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());

    

var request = require(‘request’);
var options = {
‘method’: ‘POST’,
‘url’: ‘https://panel.signalads.com/core/rest/api/v1/message/send.json’,
‘headers’: {
‘Accept’: ‘application/json’,
‘Content-Type’: ‘application/json’,
‘Authorization’: ‘Bearer TOKEN’
},
body: JSON.stringify({
“from”: “+98simcard”,
“message”: “متن پیام “,
“numbers”: [
“0912…”,
“0912…”
]
})

};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});

    

OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse(“application/json”);
RequestBody body = RequestBody.create(mediaType, “{\n \”from\”:\”+98simcard\”,\n \”message\”:\”متن پیام \”,\n \”numbers\”:[\”0912…\”,\”0912…\”]\n}”);
Request request = new Request.Builder()
.url(“https://panel.signalads.com/core/rest/api/v1/message/send.json”)
.method(“POST”, body)
.addHeader(“Accept”, “application/json”)
.addHeader(“Content-Type”, “application/json”)
.addHeader(“Authorization”, “Bearer TOKEN”)
.build();
Response response = client.newCall(request).execute();

دریافت مشاوره