POST api/Insured/InsuredTags
Insured tags 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": [
"6802a595-b8be-4f95-a083-fafb08c9ce75",
"3d82c980-b886-41b4-b210-e2f542ed1980"
]
}
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>6802a595-b8be-4f95-a083-fafb08c9ce75</d2p1:guid>
<d2p1:guid>3d82c980-b886-41b4-b210-e2f542ed1980</d2p1:guid>
</InsuredDataBaseId>
</InsuredDataBaseIds>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of InsuredTags against given insured database Ids.
InsuredTags| Name | Description | Type | Additional information |
|---|---|---|---|
| DatabaseId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| CategoryName | string |
None. |
|
| DateApplied | date |
None. |
|
| Color | string |
None. |
|
| InsuredDatabaseId | globally unique identifier |
None. |
|
| TagDatabaseId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"databaseId": "2c200372-4fff-409b-8e26-69ecda116573",
"name": "sample string 2",
"description": "sample string 3",
"categoryName": "sample string 4",
"dateApplied": "2025-12-27T10:32:36.3587785-06:00",
"color": "sample string 6",
"insuredDatabaseId": "1762fbf8-c49d-4f1a-9b11-154409bcad95",
"tagDatabaseId": "189bcef4-6e03-4837-b77f-224778c7a7f7"
}
application/xml, text/xml
Sample:
<InsuredTags xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum"> <CategoryName>sample string 4</CategoryName> <Color>sample string 6</Color> <DatabaseId>2c200372-4fff-409b-8e26-69ecda116573</DatabaseId> <DateApplied>2025-12-27T10:32:36.3587785-06:00</DateApplied> <Description>sample string 3</Description> <InsuredDatabaseId>1762fbf8-c49d-4f1a-9b11-154409bcad95</InsuredDatabaseId> <Name>sample string 2</Name> <TagDatabaseId>189bcef4-6e03-4837-b77f-224778c7a7f7</TagDatabaseId> </InsuredTags>