DeleteDownloadInfoResult

# DeleteDownloadInfoResult

The customer needs to delete the download information after successfully installing the download information, otherwise the queried download information will be returned continuously.

# POST

https://sim.express/v1/downloadInfo/delete (opens new window)

# Parameters of Request

Name Type MOC Description Example
downloadIdList List< String> Mandatory / "000000000000000", "773125985995677"

# Example of Request

    RT-AccessCode:9a27677cd8d0453cbc591dd0bab38df3
    RT-Timestamp:1636444494440
    RT-RequestID:93dd0135dc34553e
    RT-Signature:3e5cb3bb4edb2f6f1c4b99018029ee8ed099b2c5e51f5fbf070ca8aaf1061504
 
    {
        "downloadIdList":["000000000000000", "773125985995677"]
    }   

# Parameters of Response

Name Type MOC Description Example
code String Mandatory Return code, 0 means succeeded. 0
errorMsg String optional Error description, error code is empty when there is no error. null
deleteDownloadInfoResultList DeleteDownloadInfoResult optional Deletion result //td>

# DeleteDownloadInfoResult

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
downloadId String Mandatory Download ID 773125985995677

# Example of Response

 {
    "code": 0,
    "errorMsg": null,
    "deleteDownloadInfoResultList": [
        {
            "downloadId": "000000000000000",
            "code": "80001",
            "errorMsg": "download id not found, pls check!"
        },
        {
            "downloadId": "773125985995677",
            "code": 0,
            "errorMsg": ""
            }
    ]
}