POST QueueSmsNotification

Request Information

URI Parameters

None.

Body Parameters

SmsQueueRequest
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SmsQueueRequest'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>