For more information on using API

POST http://webapi.mymarketing.co.il/api/smscampaign/OperationalMessage

Create and return a new SMS message

Request Information

URI Parameters

Body Parameters

ApiSmsCampaignPostContainer

Name

Description

Type

Additional information

details

SMS Campaign details

scheduling

Scheduling the SMS campaign

mobiles

The mobile numbers that recieve the SMS campaign

Collection of ApiSMSMobile

Request Formats

application/json, text/json

Sample:
{
  "details": {
    "unsubscribe_text": "sample string 1",
    "can_unsubscribe": true,
    "name": "sample string 3",
    "from_name": "sample string 4",
    "sms_sending_profile_id": 5,
    "content": "sample string 6"
  },
  "scheduling": {
    "send_now": true,
    "scheduled_date_utc": "2016-12-24T14:12:12"
  },
  "mobiles": [
    {
      "phone_number": "sample string 1"
    },
    {
      "phone_number": "sample string 1"
    }
  ]
}

application/xml, text/xml

Sample:
<ApiSmsCampaignPostContainer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.RESTfulApi.Models.SmsCampaignReport">
  <details>
    <content>sample string 6</content>
    <from_name>sample string 4</from_name>
    <name>sample string 3</name>
    <sms_sending_profile_id>5</sms_sending_profile_id>
    <can_unsubscribe>true</can_unsubscribe>
    <unsubscribe_text>sample string 1</unsubscribe_text>
  </details>
  <from_name>sample string 1</from_name>
  <mobiles>
    <ApiSMSMobile>
      <phone_number>sample string 1</phone_number>
    </ApiSMSMobile>
    <ApiSMSMobile>
      <phone_number>sample string 1</phone_number>
    </ApiSMSMobile>
  </mobiles>
  <scheduling>
    <scheduled_date_utc>2016-12-24T14:12:12</scheduled_date_utc>
    <send_now>true</send_now>
  </scheduling>
</ApiSmsCampaignPostContainer>

application/x-www-form-urlencoded

Sample:

Sample not available.

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>