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": "652bb153-74c2-4e1e-bf78-f8d30b642dc3",
"MessageId": "48a66caa-d158-4f8b-b419-240084e71365",
"AccountId": "b6fed532-45e8-4ca7-82bc-3c22a7cdd32b",
"MessageText": "sample string 4",
"From": "sample string 5",
"To": "sample string 6",
"Now": "2026-07-05T11:19:55.677321+01: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>b6fed532-45e8-4ca7-82bc-3c22a7cdd32b</AccountId> <From>sample string 5</From> <Id>652bb153-74c2-4e1e-bf78-f8d30b642dc3</Id> <MessageId>48a66caa-d158-4f8b-b419-240084e71365</MessageId> <MessageText>sample string 4</MessageText> <Now>2026-07-05T11:19:55.677321+01:00</Now> <To>sample string 6</To> </InboundMessage>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.