POST api/users/SendSMS

Request Information

URI Parameters

None.

Body Parameters

SendSMSModel
NameDescriptionTypeAdditional information
phonenumber

string

None.

templateid

string

None.

V1

string

None.

V2

string

None.

V3

string

None.

V4

string

None.

V5

string

None.

message

string

None.

Request Formats

application/json, text/json

Sample:
{
  "phonenumber": "sample string 1",
  "templateid": "sample string 2",
  "V1": "sample string 3",
  "V2": "sample string 4",
  "V3": "sample string 5",
  "V4": "sample string 6",
  "V5": "sample string 7",
  "message": "sample string 8"
}

text/xml

Sample:
<SendSMSModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BeautyBook.Entities.Contract">
  <V1>sample string 3</V1>
  <V2>sample string 4</V2>
  <V3>sample string 5</V3>
  <V4>sample string 6</V4>
  <V5>sample string 7</V5>
  <message>sample string 8</message>
  <phonenumber>sample string 1</phonenumber>
  <templateid>sample string 2</templateid>
</SendSMSModel>

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 'SendSMSModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/xml

Sample:

Sample not available.