POST api/SmsInBound

Method used to get an SMS Inbound report.

URL Request: http://login.sendservice.eu/MultiChannelAPI/Api/SmsInbound


Parameters

ParameterDescriptionObject / Right formatRequired
userIt represents required object for the authorization  

"User": {

"username": "sample string 1",

"password": "sample string 2"

},

Yes
StartDateIt represents the start date of your reportaaaa-MM-ggThh:mm:ss.SSS+UTCYes
EndDateIt represents the end date of your reportaaaa-MM-ggThh:mm:ss.SSS+UTCYes
RecieverNumberThe telephone number of your SIM cardStringYes
KeywordIt represents the keyword for your filtered reportStringno

Example Application/json, Text/json

Example Application/json, Text/json
{
  "User": {
    "username": "your username",
    "password": "your password"
  },
  "ReceiverNumber": "+39yourSim",
  "StartDate": "2017-10-18T10:00:22.8702023+UTC",
  "EndDate": "2017-12-31T14:25:22.8702023+UTC"
}

Response

The response is an array that contains objects with following parameters.

ParameterDescriptionObject / Right formatRequired
DateIt represents the Date/Time of the message receptionaaaa-MM-ggThh:mm:ss.SSS+UTCYes
SendserNumberIt represents the Sender of the SMSStringYes
MessageIt represents the text of the recieved SMSStringno
RecieverNumberThe telephone number of your SIM cardStringYes
KeywordIt represents the keyword for your filtered reportStringno

Example Application/json, Text/json

Example Application/json Text/json
[
    {
        "Id": 234,
        "KeyWord": "",
        "SenderNumber": "+39....",
        "ReceiverNumber": "+39....",
        "Message": "Recieved SMS message",
        "Date": "2017-10-18T17:24:44+UTC"
    },
(.......)
]