POST /Japi/Tigrillo/unsuspendSIMs

Unsuspends multiple SIMs that are currently suspended.

Do not send an unsuspend request until the SIM card state is "suspended", as these may be discarded or delayed.

Authentication

  • User required to login

Headers

For information about headers, see Configuring headers.

Request Body application/json

Schema

Object name Description Required?
sims The array, listing the SIM cards you want to unsuspend.  
ICCID The SIM ICCID that you want to unsuspend.

Example

Copy
Body raw JSON
{ "sims" : [
"8944538523013111555" ,
"8944538523014444777"
]
}

Responses application/json

Schema

JSON key Description
status

The array, containing details about the request status.

status

"OK" – the request processed successfully

"ERR" – the request failed

errorCode

"" – the request processed successfully

"<ErrorCodeNumber>" – the request failed because of this specific error.

For more information, see Troubleshooting errors: Tigrillo API.

errorMessage

"" – the request processed successfully

"<ErrorCodeMessage>" – displays an explanation of the error if the request failed.

For more information, see Troubleshooting errors: Tigrillo API.

simStatuses

The array, listing all ICCIDs that failed to unsuspend. If all SIMs are successfully unsuspended, this section does not appear in the returned results.

"<ICCID>": errorMessage The ICCID of each SIM that failed to unsuspend, with a reason for the error.

Example

Copy
JSON
{
    "status": {
        "status": "OK",
        "errorCode": "",
        "errorMessage": ""
    },
    "simStatuses": {
        "8944538523013111555": "E0144:SIM cannot be unsuspended",
    }
}