Resume (Async)
PUT
/sims/{sim_id}/resumeLast modified: 1 年前
Description
Resume the SIM service.
Version
v1.0
Notes
- It's an asynchronous process.
- To query the suspend result, use API
/status
- To suspend the SIM service, use API Suspend v2 (Async)
Attention
- OTA SIM cannot be suspended.
- SIM must have at least one valid, either not started or paused bundle.
- SIM status must be
Paused
. More about SIM status: SIM Lifecycle - When SIM status is
Expired
, if the SIM has a bundle that is not started yet,resume
will start this bundle and set the SIM status to beactive
again. In any other case,resume
won't work onexpired
SIM.
请求参数
Path Params
sim_id
string
required
SIM ICCID
Example:
89852123456789098765
示例代码
Responses
Success(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
Data Schema
data
object | null
required
status
object
required
code
string
required
message
string
required
detail
string
required
Example
{
"data": null,
"status": {
"code": "CB-00-0000",
"message": "Success",
"detail": null
}
}
Last modified: 1 年前