POST api/sms/SendSmsForTaskFinishFeedbackForWeb

Request Information

URI Parameters

None.

Body Parameters

SendSmsForFeedbackInput
NameDescriptionTypeAdditional information
UserId

integer

None.

IsAff

boolean

None.

Content

string

None.

ProContent

string

None.

TaskId

globally unique identifier

None.

Type

integer

None.

ButtonId

string

None.

SendUserId

integer

None.

IsDeduct

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": 1,
  "IsAff": true,
  "Content": "sample string 3",
  "ProContent": "sample string 4",
  "TaskId": "b39bf05f-85c5-4b5d-aae4-8f2a714131f6",
  "Type": 6,
  "ButtonId": "sample string 7",
  "SendUserId": 8,
  "IsDeduct": true
}

application/xml, text/xml

Sample:
<SendSmsForFeedbackInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Siyan.Lianxinqiao.Core.SMS.Dto">
  <ButtonId>sample string 7</ButtonId>
  <Content>sample string 3</Content>
  <IsAff>true</IsAff>
  <IsDeduct>true</IsDeduct>
  <ProContent>sample string 4</ProContent>
  <SendUserId>8</SendUserId>
  <TaskId>b39bf05f-85c5-4b5d-aae4-8f2a714131f6</TaskId>
  <Type>6</Type>
  <UserId>1</UserId>
</SendSmsForFeedbackInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.