Document navigation

AddSNSSmsReceiver

API Request

URLs
POST zstack/v1/sns/sms-endpoints/receivers
Headers
Authorization: OAuth the-session-uuid
Body
{
  "params": {
    "phoneNumber": "13333333333",
    "endpointUuid": "467e77c4cc42492f9794429e689a9874",
    "type": "AliyunSms",
    "description": "description"
  },
  "systemTags": [],
  "userTags": []
}
Note: In the preceding example, the systemTags and userTags fields are optional. They are listed to indicate that the body can contain these two fields.
Curl Example
curl -H "Content-Type: application/json;charset=UTF-8" \
-H "Authorization: OAuth b86c9016b4f24953a9edefb53ca0678c" \
-X POST -d '{"params":{"phoneNumber":"13333333333","endpointUuid":"467e77c4cc42492f9794429e689a9874","type":"AliyunSms","description":"description"}}' \
http://localhost:8080/zstack/v1/sns/sms-endpoints/receivers
Parameter List
Name Type Location Description Allowed Values Starting Version
phoneNumber String body (Contained in the params structure) SMS receiving phone number 3.7.0
endpointUuid String body (Contained in the params structure) SMS endpoint UUID 3.7.0
type String body (Contained in the params structure) SMS endpoint type
  • AliyunSms
3.7.0
description (Optional) String body (Contained in the params structure) SMS receiver description 3.7.0
resourceUuid (Optional) String body (Contained in the params structure) Optional. The resource UUID. 3.7.0
tagUuids (Optional) List body (Contained in the params structure) Tag UUID list 3.7.0
systemTags (Optional) List body System tags 3.7.0
userTags (Optional) List body User tags 3.7.0

API Response

Response example
{
  "inventory": {
    "uuid": "fac44d00d50f41fda7c74b753ad4298e",
    "phoneNumber": "18912345678",
    "endpointUuid": "97c6a427da0e4c67ade85f488ddada53",
    "type": "AliyunSms",
    "description": "description",
    "createDate": "Mar 26, 2024 2:46:22 AM",
    "lastOpDate": "Mar 26, 2024 2:46:22 AM"
  }
}
Name Type Description Starting Version
success boolean Whether the operation succeeded. 5.0.0
error ErrorCode Error code. If not null, the operation failed. This field is null when the operation succeeds. For details, see error 3.7.0
inventory SNSSmsReceiverInventory For details, see inventory 3.7.0
#error
Name Type Description Starting Version
code String The error code number, a globally unique identifier for the error, for example, SYS.1000 or HOST.1001 0.6
description String A brief description of the error 0.6
details String Detailed information about the error 0.6
elaboration String Reserved field. Defaults to null 0.6
opaque LinkedHashMap Reserved field. Defaults to null 0.6
cause ErrorCode The root error that caused the current error. This field is null if there is no root cause 0.6
#inventory
Name Type Description Starting Version
uuid String The UUID of the resource, uniquely identifying this resource 3.7.0
phoneNumber String SMS receiving phone number 3.7.0
endpointUuid String SMS endpoint UUID 3.7.0
description String SMS receiver description 3.7.0
createDate Timestamp Creation time 3.7.0
lastOpDate Timestamp Last modification time 3.7.0
type SmsReceiverType For details, see type 3.7.0
#type
Name Type Description Starting Version
AliyunSms SmsReceiverType Alibaba Cloud SMS 3.7.0

SDK Examples

Java SDK
AddSNSSmsReceiverAction action = new AddSNSSmsReceiverAction();
action.phoneNumber = "13333333333";
action.endpointUuid = "467e77c4cc42492f9794429e689a9874";
action.type = "AliyunSms";
action.description = "description";
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c";
AddSNSSmsReceiverAction.Result res = action.call();
Python SDK
AddSNSSmsReceiverAction action = AddSNSSmsReceiverAction()
action.phoneNumber = "13333333333"
action.endpointUuid = "467e77c4cc42492f9794429e689a9874"
action.type = "AliyunSms"
action.description = "description"
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c"
AddSNSSmsReceiverAction.Result res = action.call()
API Reference | ZStack ZSphere · ZVF | ZStack Resource Center