GeteSIMOSUpgradePackageURL

# GeteSIMOSUpgradePackageURL

The customer check the available upgrade package on the Lookup Server according to the version number.

# POST

https://sim.express/v1/upgradePackage/get (opens new window)

# Parameters of Request

Name Type MOC Description Example
version String Mandatory Device version 000000
cardBatchNo String Mandatory Card batch number 20211208

# Example of Request

    RT-AccessCode:9a27677cd8d0453cbc591dd0bab38df3
    RT-Timestamp:1636444494440
    RT-RequestID:93dd0135dc34553e
    RT-Signature:3e5cb3bb4edb2f6f1c4b99018029ee8ed099b2c5e51f5fbf070ca8aaf1061504
 
    {
        "version":"000000",
        "cardBatchNo":"20211208"
    }

# Parameters of Response

Name Type MOC Description Example
code String Optional Return code, 0 means succeeded. 0
errorMsg String Optional Error description, error code is empty when there is no error. null
upgradeItem UpgradeItem Optional Information required for upgrade, returned if there is a new version, or it will be empty. /

# UpgradeItem

Name Type MOC Description Example
version String Optional Version number 000001
upgradePackageUrl String Optional Upgrade package URL, HexString /

# Example of Response

{
  	"code": "0",
 	"errorMsg": null,
  	"upgradeItem": 
    	{
      		"version": "",
      		"upgradePackageUrl": ""
    	}
  	
}