POST api/Texting

Request Information

URI Parameters

None.

Body Parameters

TextMessage
NameDescriptionTypeAdditional information
eShopId

integer

None.

shopCustomerId

string

None.

shopVehicleId

string

None.

mobileNumber

string

None.

content

string

None.

userId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "eShopId": 1,
  "shopCustomerId": "sample string 2",
  "shopVehicleId": "sample string 3",
  "mobileNumber": "sample string 4",
  "content": "sample string 5",
  "userId": 6
}

application/xml, text/xml

Sample:
<TextMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DVI.Api.Controllers">
  <content>sample string 5</content>
  <eShopId>1</eShopId>
  <mobileNumber>sample string 4</mobileNumber>
  <shopCustomerId>sample string 2</shopCustomerId>
  <shopVehicleId>sample string 3</shopVehicleId>
  <userId>6</userId>
</TextMessage>

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.