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": [ "fff2d386-76e9-4354-987a-3b94ba462fdc", "1665d0ee-f2b7-4008-a55f-76d869487109" ] }
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>fff2d386-76e9-4354-987a-3b94ba462fdc</d2p1:guid> <d2p1:guid>1665d0ee-f2b7-4008-a55f-76d869487109</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": "07d6948b-5159-4e96-aa92-5be8a4cd9760", "subject": "sample string 2", "insuredDatabaseId": "87246b3a-beaf-4b20-a347-73ca04589ea2", "insuredEmail": "sample string 3", "insuredFirstName": "sample string 4", "insuredLastName": "sample string 5", "insuredCommercialName": "sample string 6", "createDate": "2023-06-03T12:14:07.7183267-05:00", "creatorName": "sample string 8", "type": "sample string 9", "parentNoteId": "9aeaa43a-9f3f-4733-86d7-fda3a6903b70", "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>2023-06-03T12:14:07.7183267-05:00</CreateDate> <CreatorName>sample string 8</CreatorName> <DatabaseId>07d6948b-5159-4e96-aa92-5be8a4cd9760</DatabaseId> <Hide>true</Hide> <InsuredCommercialName>sample string 6</InsuredCommercialName> <InsuredDatabaseId>87246b3a-beaf-4b20-a347-73ca04589ea2</InsuredDatabaseId> <InsuredEmail>sample string 3</InsuredEmail> <InsuredFirstName>sample string 4</InsuredFirstName> <InsuredLastName>sample string 5</InsuredLastName> <ParentNoteId>9aeaa43a-9f3f-4733-86d7-fda3a6903b70</ParentNoteId> <Subject>sample string 2</Subject> <Type>sample string 9</Type> </InsuredNotes>