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": [
"99f7485a-2484-4d70-9f4f-2d41ea9c5f32",
"b0fbd354-36da-442b-9c55-462ca1532dc4"
]
}
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>99f7485a-2484-4d70-9f4f-2d41ea9c5f32</d2p1:guid>
<d2p1:guid>b0fbd354-36da-442b-9c55-462ca1532dc4</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": "4b18ab58-979d-43e9-bd9c-9b822d3a20ce",
"name": "sample string 2",
"description": "sample string 3",
"categoryName": "sample string 4",
"dateApplied": "2026-09-11T13:58:46.4558815-05:00",
"color": "sample string 6",
"insuredDatabaseId": "9e8b0193-34d0-47b0-b392-220935d5a943",
"tagDatabaseId": "1d4ec803-90d4-4eeb-a765-a5169a1c6fd7"
}
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>4b18ab58-979d-43e9-bd9c-9b822d3a20ce</DatabaseId> <DateApplied>2026-09-11T13:58:46.4558815-05:00</DateApplied> <Description>sample string 3</Description> <InsuredDatabaseId>9e8b0193-34d0-47b0-b392-220935d5a943</InsuredDatabaseId> <Name>sample string 2</Name> <TagDatabaseId>1d4ec803-90d4-4eeb-a765-a5169a1c6fd7</TagDatabaseId> </InsuredTags>