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": [
"e5176c44-bb63-4653-be04-45570f29a843",
"1fad47de-e76b-4fb5-947f-c99c2300ac92"
]
}
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>e5176c44-bb63-4653-be04-45570f29a843</d2p1:guid>
<d2p1:guid>1fad47de-e76b-4fb5-947f-c99c2300ac92</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": "e6c228e0-e315-45bb-bfab-147e11461ce9",
"name": "sample string 2",
"description": "sample string 3",
"categoryName": "sample string 4",
"dateApplied": "2026-02-17T08:21:20.757175-06:00",
"color": "sample string 6",
"insuredDatabaseId": "1dbcb6ef-017e-4aef-ab4f-66ab5f808ed5",
"tagDatabaseId": "7df7dc4e-eab0-4d41-9434-25d1b5669da3"
}
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>e6c228e0-e315-45bb-bfab-147e11461ce9</DatabaseId> <DateApplied>2026-02-17T08:21:20.757175-06:00</DateApplied> <Description>sample string 3</Description> <InsuredDatabaseId>1dbcb6ef-017e-4aef-ab4f-66ab5f808ed5</InsuredDatabaseId> <Name>sample string 2</Name> <TagDatabaseId>7df7dc4e-eab0-4d41-9434-25d1b5669da3</TagDatabaseId> </InsuredTags>