POST api/Insured/InsuredNotes
Insured notes list endpoint.
Request Information
URI Parameters
None.
Body Parameters
List of insured database Ids.
InsuredDataBaseIdsName | Description | Type | Additional information |
---|---|---|---|
InsuredDataBaseId | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "insuredDataBaseId": [ "67d926be-d3cd-471f-839f-8c38d971c9d8", "2a3fefc0-6846-47fb-a128-852fa9a69500" ] }
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>67d926be-d3cd-471f-839f-8c38d971c9d8</d2p1:guid> <d2p1:guid>2a3fefc0-6846-47fb-a128-852fa9a69500</d2p1:guid> </InsuredDataBaseId> </InsuredDataBaseIds>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of InsuredNotes against given insured database Ids.
InsuredNotesName | Description | Type | Additional information |
---|---|---|---|
DatabaseId | globally unique identifier |
None. |
|
Subject | string |
None. |
|
InsuredDatabaseId | globally unique identifier |
None. |
|
InsuredEmail | string |
None. |
|
InsuredFirstName | string |
None. |
|
InsuredLastName | string |
None. |
|
InsuredCommercialName | string |
None. |
|
CreateDate | date |
None. |
|
CreatorName | string |
None. |
|
Type | string |
None. |
|
ParentNoteId | globally unique identifier |
None. |
|
Hide | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "databaseId": "e5ed8e4c-c354-47a6-a112-722c6bf1092f", "subject": "sample string 2", "insuredDatabaseId": "00cce51e-35fc-41de-a4b1-a6a96f47758d", "insuredEmail": "sample string 3", "insuredFirstName": "sample string 4", "insuredLastName": "sample string 5", "insuredCommercialName": "sample string 6", "createDate": "2024-12-06T14:59:54.9484422-06:00", "creatorName": "sample string 8", "type": "sample string 9", "parentNoteId": "42c22ac3-4f8f-4bad-a2c9-5da2f073614d", "hide": true }
application/xml, text/xml
Sample:
<InsuredNotes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum"> <CreateDate>2024-12-06T14:59:54.9484422-06:00</CreateDate> <CreatorName>sample string 8</CreatorName> <DatabaseId>e5ed8e4c-c354-47a6-a112-722c6bf1092f</DatabaseId> <Hide>true</Hide> <InsuredCommercialName>sample string 6</InsuredCommercialName> <InsuredDatabaseId>00cce51e-35fc-41de-a4b1-a6a96f47758d</InsuredDatabaseId> <InsuredEmail>sample string 3</InsuredEmail> <InsuredFirstName>sample string 4</InsuredFirstName> <InsuredLastName>sample string 5</InsuredLastName> <ParentNoteId>42c22ac3-4f8f-4bad-a2c9-5da2f073614d</ParentNoteId> <Subject>sample string 2</Subject> <Type>sample string 9</Type> </InsuredNotes>