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": [
"abc069cd-666b-4bb7-b665-d112de5b8f40",
"0ff9fa84-1dbe-46f7-af70-6aa3a9dae50a"
]
}
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>abc069cd-666b-4bb7-b665-d112de5b8f40</d2p1:guid>
<d2p1:guid>0ff9fa84-1dbe-46f7-af70-6aa3a9dae50a</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": "0a3809bf-8799-46f8-a3af-ff1cd38c5c09",
"name": "sample string 2",
"description": "sample string 3",
"categoryName": "sample string 4",
"dateApplied": "2025-10-28T02:36:56.3820393-05:00",
"color": "sample string 6",
"insuredDatabaseId": "8477843e-7308-4e7f-95bc-64048f902967",
"tagDatabaseId": "4cc60c57-7abb-4bf6-bbfd-e650d960b036"
}
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>0a3809bf-8799-46f8-a3af-ff1cd38c5c09</DatabaseId> <DateApplied>2025-10-28T02:36:56.3820393-05:00</DateApplied> <Description>sample string 3</Description> <InsuredDatabaseId>8477843e-7308-4e7f-95bc-64048f902967</InsuredDatabaseId> <Name>sample string 2</Name> <TagDatabaseId>4cc60c57-7abb-4bf6-bbfd-e650d960b036</TagDatabaseId> </InsuredTags>