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": [
"451f1187-404a-43ca-84cc-ef29fa06abd4",
"7de99232-e46e-4413-85e0-2157c7340f62"
]
}
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>451f1187-404a-43ca-84cc-ef29fa06abd4</d2p1:guid>
<d2p1:guid>7de99232-e46e-4413-85e0-2157c7340f62</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": "56931200-6733-4428-bbcd-35ce9c0d4b0b",
"name": "sample string 2",
"description": "sample string 3",
"categoryName": "sample string 4",
"dateApplied": "2025-11-04T12:31:11.7891069-06:00",
"color": "sample string 6",
"insuredDatabaseId": "83e59585-35fc-4d43-9c9c-d262f4f1bb4d",
"tagDatabaseId": "03ee5d74-885d-4ed9-9cf5-33e5acee4042"
}
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>56931200-6733-4428-bbcd-35ce9c0d4b0b</DatabaseId> <DateApplied>2025-11-04T12:31:11.7891069-06:00</DateApplied> <Description>sample string 3</Description> <InsuredDatabaseId>83e59585-35fc-4d43-9c9c-d262f4f1bb4d</InsuredDatabaseId> <Name>sample string 2</Name> <TagDatabaseId>03ee5d74-885d-4ed9-9cf5-33e5acee4042</TagDatabaseId> </InsuredTags>