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": [
"a5e36c1e-a480-4c6e-8636-0351401dbf87",
"61f210b6-800c-4337-adae-b65191a48756"
]
}
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>a5e36c1e-a480-4c6e-8636-0351401dbf87</d2p1:guid>
<d2p1:guid>61f210b6-800c-4337-adae-b65191a48756</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": "bc2abc0b-50bd-4801-8431-d9e9ef18cffa",
"name": "sample string 2",
"description": "sample string 3",
"categoryName": "sample string 4",
"dateApplied": "2025-12-31T22:05:58.9484361-06:00",
"color": "sample string 6",
"insuredDatabaseId": "9b867cf7-dfd8-4bbb-889c-131349558dd4",
"tagDatabaseId": "e669a812-cd4b-4cc4-80e2-969985d9c775"
}
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>bc2abc0b-50bd-4801-8431-d9e9ef18cffa</DatabaseId> <DateApplied>2025-12-31T22:05:58.9484361-06:00</DateApplied> <Description>sample string 3</Description> <InsuredDatabaseId>9b867cf7-dfd8-4bbb-889c-131349558dd4</InsuredDatabaseId> <Name>sample string 2</Name> <TagDatabaseId>e669a812-cd4b-4cc4-80e2-969985d9c775</TagDatabaseId> </InsuredTags>