POST api/smsSend

Request Information

URI Parameters

None.

Body Parameters

SmsMitekRequest
NameDescriptionTypeAdditional information
sender

string

None.

receiver

string

None.

message

string

None.

type_send

string

None.

random_sender

integer

None.

campaign_id

integer

None.

customer_id

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "sender": "sample string 1",
  "receiver": "sample string 2",
  "message": "sample string 3",
  "type_send": "sample string 4",
  "random_sender": 5,
  "campaign_id": 6,
  "customer_id": 7
}

application/xml, text/xml

Sample:
<SmsMitekRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/pfcSmsBrandFPT.Models">
  <campaign_id>6</campaign_id>
  <customer_id>7</customer_id>
  <message>sample string 3</message>
  <random_sender>5</random_sender>
  <receiver>sample string 2</receiver>
  <sender>sample string 1</sender>
  <type_send>sample string 4</type_send>
</SmsMitekRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Dictionary of string [key] and Object [value]

Response Formats

application/json, text/json

Sample:
{
  "sample string 1": {},
  "sample string 3": {}
}

application/xml, text/xml

Sample:
<ArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <KeyValueOfstringanyType>
    <Key>sample string 1</Key>
    <Value />
  </KeyValueOfstringanyType>
  <KeyValueOfstringanyType>
    <Key>sample string 3</Key>
    <Value />
  </KeyValueOfstringanyType>
</ArrayOfKeyValueOfstringanyType>