برای خرید سامانه پیامک همین الان در پیامک آموت ثبت نام کنید
متد وب سرویس
ارسال نظیر به نظیر (SendPeerToPeer)
آخرین بروزرسانی
دوشنبه 23 مرداد 1402 18:59
Loading
نام | نوع | توضیحات |
Token | String الزامی | توکن ثبت شده در سامانه پیامک آموت |
SendDateTime | DateTime الزامی | زمان ارسال پیامک |
LineNumber | String الزامی | شماره خط |
Input | Object[] الزامی | آرایه ای از یک کلاس با دوفیلد متن به نامهای Number و MessageText هست. که به ازای هر ردیف شماره و متن خاص خود را دارا هستند. |
Loading
نام | نوع | توضیحات |
ReturnValue | Object | |
Loading
string Token = "MyToken";
DateTime SendDateTime = DateTime.Now;
string LineNumber = "public";
using (var client = new System.Net.WebClient())
{
client.Headers.Add(System.Net.HttpRequestHeader.Authorization, Token);
client.Headers.Add(System.Net.HttpRequestHeader.ContentType, "application/json; charset=utf-8");
client.Encoding = Encoding.UTF8;
var data = new
{
SendDateTime = SendDateTime,
LineNumber = LineNumber,
Input = new object[] {
new { Number = "0915xxxxxxx", MessageText = "متن 1" },
new { Number = "0912xxxxxxx", MessageText = "متن 2" },
}
};
string jsonInput = JsonConvert.SerializeObject(data);
string json = client.UploadString("https://portal.amootsms.com/rest/SendPeerToPeer", jsonInput);//خروجی
}
Loading
Status | Title |
0 | Failed |
1 | Success |
2 | AccountIsDemo |
4 | CreditNotEnough |
5 | LineNumber_NotExist |
6 | BackupLineNumber_NotExist |
7 | Avanak_NotAvailable |
10 | UserName_Empty |
11 | Password_Empty |
12 | LineNumber_Empty |
13 | BackupLineNumber_Empty |
14 | SMSMessageText_Empty |
15 | AvanakMessageText_Empty |
16 | Mobile_Empty |
17 | Mobiles_Empty |
18 | Title_Empty |
19 | FirstNameOrLastName_Empty |
20 | URLAddress_Empty |
100 | UserNameOrPassword_Invalid |
101 | Mobile_Invalid |
102 | Mobiles_Invalid |
103 | Count_Invalid |
104 | FromRow_Invalid |
105 | FromDate_Invalid |
106 | FromDateTime_Invalid |
107 | ToDate_Invalid |
108 | ToDateTime_Invalid |
109 | FromDateIsAfterThanToDate |
110 | FromDateTimeIsAfterThanToDateTime |
111 | MessageID_Invalid |
112 | BulkID_Invalid |
113 | ContactID_Invalid |
114 | ContactGroupID_Invalid |
115 | CourseID_Invalid |
116 | CourseGroupID_Invalid |
117 | URLAddress_Duplicate |
118 | RelayMessageDeliveryID_Invalid |
119 | RelayRecieveMessageID_Invalid |
120 | Length_Invalid |
121 | Length_Exceeded |
500 | ServerError |
-300 | System_Disabled |
-208 | Token_NotAllowMethod |
-207 | Token_NotAllowIP |
-204 | Token_Expired |
-203 | Token_Disabled |
-202 | Token_Invalid |
-201 | Token_NotExists |
-108 | User_NotAllowMethod |
-107 | User_NotAllowIP |
-106 | User_NotAllowWebService |
-105 | User_WebServiceBanned |
-104 | User_Expired |
-103 | User_Disabled |
-102 | User_MobileNotVerified |
-1 | User_NotExists |