List all SMS by Job ID (MT)
开发中GET
/sms/mt/job/{job_id}Last modified: 1 年前
Description
Retrieve list of SMS(mt) sent to the device, given the job ID of the sending request.
Version:
v1.0
Sign2.0
Notes:
- job ID provided exists and belongs to the organisation.
- job is not older than 180 days
请求参数
Path Params
job_id
string
required
in the resoponse of send sms
Example:
21138AABC
示例代码
Responses
Success(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
Data Schema
data
$ref(#/definitions/28888513)[]
required
#/definitions/28888513
optional
total_count
string
required
Example
{
"data": [
{
"org_id": "P001234",
"sim_id": "89852123456789012345",
"msisdn": "877676774564564",
"send_at": "2023-01-01T12:12:12Z",
"message": {
"type": 1,
"content": "test"
},
"status": 1,
"source": 1,
"user": null,
"update_at": "2023-01-01T12:12:12Z",
"error": null
}
],
"status": {
"code": "CB-00-0000",
"message": "Success",
"detail": null
},
"total_count": 111
}
Last modified: 1 年前