For more information on using API

GET http://webapi.mymarketing.co.il/api/smssendingrequest?Token={Token}&UnsubscribeText={UnsubscribeText}&CanUnsubscribe={CanUnsubscribe}&Mobiles={Mobiles}&Id={Id}&Name={Name}&FromName={FromName}&SmsSendingProfileId={SmsSendingProfileId}&Content={Content}

Send sms campaign request from query string.

Request Information

URI Parameters

Name

Description

Type

Additional information

token

Insert an access token to send SMS campaign

string
unsubscribe_text

If the campaign contains unsubscribe text

string
can_unsubscribe

If the campaign contains unsubscribe link

boolean
mobiles

The mobile numbers that recieve the SMS campaign, seperated by commas

string
name

SMS campaign name

string
from_name

From name

string
sms_sending_profile_id

Using a specific sending profile

integer
content

The text of the SMS campaign

string

Body Parameters

None.

Response Information

Resource Description

ApiSmsCampaignInfo

Name

Description

Type

Additional information

id

SMS campaign id

integer
name

SMS campaign name

string
from_name

From name

string
sms_sending_profile_id

Using a specific sending profile

integer
content

The text of the SMS campaign

string

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "name": "sample string 2",
  "from_name": "sample string 3",
  "sms_sending_profile_id": 4,
  "content": "sample string 5"
}

application/xml, text/xml

Sample:
<ApiSmsCampaignInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.RESTfulApi.Models.SmsCampaignReport">
  <content>sample string 5</content>
  <from_name>sample string 3</from_name>
  <name>sample string 2</name>
  <sms_sending_profile_id>4</sms_sending_profile_id>
</ApiSmsCampaignInfo>