app_prepaid.prepaid.status

The app_prepaid.prepaid.status service is used to check the status of a Prepaid SIM.

TR50 Request

{
  "put": {
    "command": "app_prepaid.prepaid.status",
    "params": {
      "iccid": "123456789"
    }
  }
}

Request Parameters

Name Type Required Description
iccid String Yes The ICCID number that identifies the SIM.

TR50 Response

If the command is sent successfully a success message is returned. Otherwise, an error and error message will be returned.

{
            "iccid": "123456789",
            "orgID": "orgIDnumber",
            "realID": "fdccdb0",
            "cdpID": "1587",
            "sourceID": "01f2eba830c",
            "startDate": 1664582400000,
            "validTill": 1798761600000,
            "renewalOption": "Terminate",
            "dataAllowance": 73728,
            "dataUsage": 50733,
            "smsAllowance": 750,
            "smsUsage": 0,
            "smsUsageAlert": false,
            "smsUsage80Alert": false,
            "smsExpirationAlert": false,
            "dataUsageAlert": false,
            "dataUsage80Alert": false,
            "dataExpirationAlert": false,
            "expiration30Alert": false,
            "expiration60Alert": false,
            "renewalAlert": false,
            "refillAlert": false,
            "terminateAlert": false,
            "tags": null,
            "status": "activated",
            "smsStatus": "enabled",
            "dataStatus": "enabled"
        }