POST QueueSmsNotification
Request Information
URI Parameters
None.
Body Parameters
SmsQueueRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PhoneNumber | string |
None. |
|
| UserId | string |
None. |
|
| SmsType | integer |
None. |
|
| Message | string |
None. |
|
| CompanyId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PhoneNumber": "sample string 1",
"UserId": "sample string 2",
"SmsType": 3,
"Message": "sample string 4",
"CompanyId": 1
}
application/xml, text/xml
Sample:
<SmsQueueRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UCareAPI.Controllers"> <CompanyId>1</CompanyId> <Message>sample string 4</Message> <PhoneNumber>sample string 1</PhoneNumber> <SmsType>3</SmsType> <UserId>sample string 2</UserId> </SmsQueueRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>