POST api/Sms
Request Information
URI Parameters
None.
Body Parameters
InboundMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| MessageId | globally unique identifier |
None. |
|
| AccountId | globally unique identifier |
None. |
|
| MessageText | string |
None. |
|
| From | string |
None. |
|
| To | string |
None. |
|
| Now | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "6d9037ba-35a3-4a06-b886-ce474b8d37d3",
"MessageId": "7f6d2c0e-4c39-401f-860c-51a5c067e335",
"AccountId": "68af4d51-3d76-4369-9577-1d7603bb1006",
"MessageText": "sample string 4",
"From": "sample string 5",
"To": "sample string 6",
"Now": "2026-03-17T14:38:27.3698498+00:00"
}
application/xml, text/xml
Sample:
<InboundMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PrismAPI.Models"> <AccountId>68af4d51-3d76-4369-9577-1d7603bb1006</AccountId> <From>sample string 5</From> <Id>6d9037ba-35a3-4a06-b886-ce474b8d37d3</Id> <MessageId>7f6d2c0e-4c39-401f-860c-51a5c067e335</MessageId> <MessageText>sample string 4</MessageText> <Now>2026-03-17T14:38:27.3698498+00:00</Now> <To>sample string 6</To> </InboundMessage>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.