Get Sim Sms API

Property Description
Title Get all sms(s) from a sim
Description Get all sms sent by the sim based on iccid.
URL https://ws.borderlessm2m.com/Info/GetSms/{iccid}
Method GET
Authentication Basic Auth
Body NIL
Return Message Example:
{
    "message": "GetSms Record=99",
    "errors": [
        ""
    ],
    "smsInfoList": [
        {
            "direction": "OUTBOUND",
            "from": "BHM2M",
            "status": "Delivered",
            "message": "This is my sms message",
            "iccid": "xxxxxxxxxxxxxxxxxxx",
            "date": "2018-01-01 12:32:44,0000"
        },
        ...
    ]
}
							
Errors
Error Description Example
Wrong username or password
{
    "code": 500,
    "message": "There was an error processing your request. It has been logged (ID xxxxxxxxxxxxxxxx)."
}
										
Wrong iccid
{
    "message": "Bad Request",
    "errors": [
        "Could not find : {iccid}"
    ],
    "smsInfoList": null
}