دریافت پیامک های دریافتی (RecieveMessages)

برای خرید سامانه پیامک همین الان در پیامک آموت ثبت نام کنید

متد وب سرویس دریافت پیامک های دریافتی (RecieveMessages)

آخرین بروزرسانی شنبه 20 آبان 1402 12:19
Loading

آدرس وب سرویس

Rest Url

متد RecieveMessages

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

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

Loading
نام نوع توضیحات
TokenString الزامیتوکن ثبت شده در سامانه پیامک آموت
FromDateTimeObject الزامیاز تاریخ/زمان
ToDateTimeObject الزامیتا تاریخ/زمان
LineNumberString اختیاریشماره خط (این فیلد اختیاری میباشد و درصورت مقدار براساس آن شماره خط فیلتر میشود)

مقدار خروجی

Loading
نام نوع توضیحات
ReturnValueObject

نمونه کد

Loading
string Token = "MyToken";
DateTime FromDateTime = DateTime.Now.AddMonths(-1);
DateTime ToDateTime = DateTime.Now;
string LineNumber="";


using (var client = new System.Net.WebClient())
{
    client.Headers.Add(System.Net.HttpRequestHeader.Authorization, Token);

    var data = new System.Collections.Specialized.NameValueCollection()
    {
        { "FromDateTime", FromDateTime.ToString() },
        { "ToDateTime", ToDateTime.ToString() },
        { "LineNumber", LineNumber },
    };

    byte[] bytes = client.UploadValues("https://portal.amootsms.com/rest/RecieveMessages", data);

    string json = System.Text.UTF8Encoding.UTF8.GetString(bytes);//خروجی
}
$url = "https://portal.amootsms.com/rest/RecieveMessages";

$url = $url."?"."Token=".urlencode("MyToken");
$FromDateTime= new DateTime('2020-01-01');
$url = $url."&"."FromDateTime=".$FromDateTimeIran->format('c');

$ToDateTime= new DateTime('2020-02-01');
$url = $url."&"."ToDateTime=".$ToDateTime->format('c');

$LineNumber = "";
$url = $url."&"."LineNumber=".$LineNumber;

$json = file_get_contents($url);
echo $json;

//$result = json_decode($json);
//echo $result->Status;

وضعیت

Loading
Status Title
0Failed
1Success
2AccountIsDemo
4CreditNotEnough
5LineNumber_NotExist
6BackupLineNumber_NotExist
7Avanak_NotAvailable
10UserName_Empty
11Password_Empty
12LineNumber_Empty
13BackupLineNumber_Empty
14SMSMessageText_Empty
15AvanakMessageText_Empty
16Mobile_Empty
17Mobiles_Empty
18Title_Empty
19FirstNameOrLastName_Empty
20URLAddress_Empty
100UserNameOrPassword_Invalid
101Mobile_Invalid
102Mobiles_Invalid
103Count_Invalid
104FromRow_Invalid
105FromDate_Invalid
106FromDateTime_Invalid
107ToDate_Invalid
108ToDateTime_Invalid
109FromDateIsAfterThanToDate
110FromDateTimeIsAfterThanToDateTime
111MessageID_Invalid
112BulkID_Invalid
113ContactID_Invalid
114ContactGroupID_Invalid
115CourseID_Invalid
116CourseGroupID_Invalid
117URLAddress_Duplicate
118RelayMessageDeliveryID_Invalid
119RelayRecieveMessageID_Invalid
120Length_Invalid
121Length_Exceeded
500ServerError
-300System_Disabled
-208Token_NotAllowMethod
-207Token_NotAllowIP
-204Token_Expired
-203Token_Disabled
-202Token_Invalid
-201Token_NotExists
-108User_NotAllowMethod
-107User_NotAllowIP
-106User_NotAllowWebService
-105User_WebServiceBanned
-104User_Expired
-103User_Disabled
-102User_MobileNotVerified
-1User_NotExists