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": "561b0c65-aa41-4efa-9ec0-8fb1884c4515",
"MessageId": "5a7323a4-fc2d-4c4e-b22e-e7a4fbc9ca18",
"AccountId": "71b9ae20-7b17-47d2-8641-745ea862dba1",
"MessageText": "sample string 4",
"From": "sample string 5",
"To": "sample string 6",
"Now": "2026-08-29T11:15:09.8531384+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>71b9ae20-7b17-47d2-8641-745ea862dba1</AccountId> <From>sample string 5</From> <Id>561b0c65-aa41-4efa-9ec0-8fb1884c4515</Id> <MessageId>5a7323a4-fc2d-4c4e-b22e-e7a4fbc9ca18</MessageId> <MessageText>sample string 4</MessageText> <Now>2026-08-29T11:15:09.8531384+01:00</Now> <To>sample string 6</To> </InboundMessage>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.