POST api/Insured/InsuredSMS
Insured Sms list endpoint.
Request Information
URI Parameters
None.
Body Parameters
List of insured database Ids.
InsuredDataBaseIds| Name | Description | Type | Additional information |
|---|---|---|---|
| InsuredDataBaseId | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"insuredDataBaseId": [
"32fec56d-c865-49b2-8759-41a9394ffaec",
"8f93ebe3-a9d9-4bda-8bc5-256851be5e5c"
]
}
application/xml, text/xml
Sample:
<InsuredDataBaseIds xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.OData">
<InsuredDataBaseId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>32fec56d-c865-49b2-8759-41a9394ffaec</d2p1:guid>
<d2p1:guid>8f93ebe3-a9d9-4bda-8bc5-256851be5e5c</d2p1:guid>
</InsuredDataBaseId>
</InsuredDataBaseIds>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of InsuredSMS against given insured database Ids.
InsuredSMS| Name | Description | Type | Additional information |
|---|---|---|---|
| DateAndTime | date |
None. |
|
| FromNumber | string |
None. |
|
| ToNumber | string |
None. |
|
| Subject | string |
None. |
|
| FromName | string |
None. |
|
| ToName | string |
None. |
|
| ConversationId | string |
None. |
|
| MessageId | string |
None. |
|
| IsRead | boolean |
None. |
|
| SystemType | string |
None. |
|
| InsuredDatabaseId | globally unique identifier |
None. |
|
| InsuredEmail | string |
None. |
|
| InsuredFirstName | string |
None. |
|
| InsuredLastName | string |
None. |
|
| InsuredCommercialName | string |
None. |
|
| DatabaseId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"dateAndTime": "2025-11-15T04:39:17.0785224-06:00",
"fromNumber": "sample string 2",
"toNumber": "sample string 3",
"subject": "sample string 4",
"fromName": "sample string 5",
"toName": "sample string 6",
"conversationId": "sample string 7",
"messageId": "sample string 8",
"isRead": true,
"systemType": "sample string 10",
"insuredDatabaseId": "557e728b-6f8b-468e-8217-0068e8ebabf0",
"insuredEmail": "sample string 11",
"insuredFirstName": "sample string 12",
"insuredLastName": "sample string 13",
"insuredCommercialName": "sample string 14",
"databaseId": "75896c1e-aae2-4204-8f86-2d7881ae80e4"
}
application/xml, text/xml
Sample:
<InsuredSMS xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum"> <ConversationId>sample string 7</ConversationId> <DatabaseId>75896c1e-aae2-4204-8f86-2d7881ae80e4</DatabaseId> <DateAndTime>2025-11-15T04:39:17.0785224-06:00</DateAndTime> <FromName>sample string 5</FromName> <FromNumber>sample string 2</FromNumber> <InsuredCommercialName>sample string 14</InsuredCommercialName> <InsuredDatabaseId>557e728b-6f8b-468e-8217-0068e8ebabf0</InsuredDatabaseId> <InsuredEmail>sample string 11</InsuredEmail> <InsuredFirstName>sample string 12</InsuredFirstName> <InsuredLastName>sample string 13</InsuredLastName> <IsRead>true</IsRead> <MessageId>sample string 8</MessageId> <Subject>sample string 4</Subject> <SystemType>sample string 10</SystemType> <ToName>sample string 6</ToName> <ToNumber>sample string 3</ToNumber> </InsuredSMS>