Get Sims API

Property Description
Title Get Sims
Description Get all the sims accessible by the user.
URL https://ws.borderlessm2m.com/Info/GetSims
Method GET
Authentication Basic Auth
Body NIL
Return Message The return JSON would show the number of records. Each siminfo would have iccid, status and offer.
Example:
{
    "message": "GetSims Record=512",
    "errors": [
        ""
    ],
    "simInfoList": [
        {
            "iccid": "8944502607174050027",
            "status": "OnStock",
            "offer": null
        },
        {
            "iccid": "8944502607174041000",
            "status": "OnStock",
            "offer": null
        },
        ...
    ]
}
							
Errors
Error Description Example
Wrong username or password
{
    "code": 500,
    "message": "There was an error processing your request. It has been logged (ID xxxxxxxxxxxxxxxx)."
}