POST api/sms/SendSmsV

Request Information

URI Parameters

None.

Body Parameters

SmsSendForOutInput
NameDescriptionTypeAdditional information
phoneNumber

string

None.

content

string

None.

phones

Collection of string

None.

sendTime

date

None.

Request Formats

application/json, text/json

Sample:
{
  "phoneNumber": "sample string 1",
  "content": "sample string 2",
  "phones": [
    "sample string 1",
    "sample string 2"
  ],
  "sendTime": "2025-12-24T22:08:35.6926537+08:00"
}

application/xml, text/xml

Sample:
<SmsSendForOutInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Siyan.Lianxinqiao.Core.SMS.DtoOut">
  <content>sample string 2</content>
  <phoneNumber>sample string 1</phoneNumber>
  <phones xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </phones>
  <sendTime>2025-12-24T22:08:35.6926537+08:00</sendTime>
</SmsSendForOutInput>

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.