Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

...

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

Response

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

...

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