Skip to main content

GetUSMSSendReceipt

Call the GetUSMSSendReceipt API to obtain the status information of SMS sending.

Request Parameters

Parameter nameTypeDescriptionRequired
ActionstringValue: GetUSMSSendReceipt.Yes
AccountIdintAccountId ID. Get AccountId.Yes
SessionNoSet[]stringThe SessionNo set returned when the SMS is sent. The number of sets per call should be controlled within 100.Yes
  • After submitting and sending SMS, you can call the GetUSMSSendReceipt interface to query and obtain the status information of SMS sending.

  • If you do not receive the receipt status immediately after sending, it is recommended to try to call it again within 5 to 10 minutes after sending.

  • If you have not received the sending status after more than 12 hours, you can contact support@uspeedo.com for technical support.

Response Elements

Parameter nameTypeDescriptionRequired
RetCodeintWhen RetCode is not 0, the specific error description is displayed in Message. If RetCode is 0, Message will not be returned.Yes
ActionstringOperation name.Yes
MessagestringError description when an error occurs.Yes
DataarrayReceipt information set.Yes

ReceiptPerSession

Parameter nameTypeDescriptionRequired
SessionNostringThe SessionNo returned when sending the SMS.Yes
ReceiptSetarrayThe collection of receipt information for each phone number.Yes

ReceiptPerPhone

Parameter nameTypeDescriptionRequired
PhonestringThe phone number.Yes
BrevityCodestringBrevityCodeYes
CountryCodestringCountryCodeYes
CostCountintThe number of SMS messages consumed.Yes
ReceiptResultstringThe receipt result, with the following enumeration values:
Success: indicates success
Fail: indicates failure
Unknow: indicates unknown
SubmitFail: indicates submission failure.
Yes
ReceiptCodestringThe status report code.Yes
ReceiptDescstringThe receipt result description.Yes
ReceiptTimeintThe time when the receipt was returned.Yes
UserIdstringCustom business identification ID, in string format.Yes

Request Example

curl -X POST https://api.uspeedo.com/api -H 'Content-Type: application/json' -d '{
"Action": "GetUSMSSendReceipt",
"AccountId": 1,
"SessionNoSet": ["nAQDODtO"]
}'

Response Example

{
"Action": "GetUSMSSendReceiptResponse",
"Message": "OnVhSPcD",
"Data": [
{
"SessionNo": "BmThtoRB",
"ReceiptSet": [
{
"CostCount": 6,
"ReceiptTime": 6,
"UserId": "1213",
"ReceiptCode": "0",
"Phone": "QbPtKJPa",
"ReceiptResult": "Success",
"ReceiptDesc": "DxMRsuET",
"BrevityCode": "HK",
"CountryCode": "852"
}
]
}
],
"RetCode": 0
}