Get Sims API v2

Property Description
Title Get Sims including custom fields
Description Get all the sims accessible by the user.
URL https://ws.borderlessm2m.com/Info/GetSimsV2
Method GET
Authentication Basic Auth
Body NIL
Return Message The return JSON would show the number of records. Each siminfo would have iccid, status, offer and custom fields.
Example:
{
    "message": "GetSims Record=512",
    "errors": [
        ""
    ],
    "simInfoList": [
			{
				"iccid": "xxxxxxxxx",
				"imsi": "xxxxxx",
				"msisdn": "mmmmmmmmmmmm",
				"ip": null,
				"status": "OnStock",
				"offer": null,
				"custom0": "1234",
				"custom1": null,
				"custom2": null,
				"custom3": null,
				"custom4": null,
				"custom5": null,
				"custom6": null,
				"custom7": null,
				"custom8": null,
				"custom9": 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)."
}