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": [
"ab1e8904-9d2f-4633-8e27-f9dadd81908e",
"4dda019b-15dd-42f4-83d9-704614f24f54"
]
}
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>ab1e8904-9d2f-4633-8e27-f9dadd81908e</d2p1:guid>
<d2p1:guid>4dda019b-15dd-42f4-83d9-704614f24f54</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": "f45b3783-a932-4f49-af20-bcb8ecd8ffa2",
"name": "sample string 2",
"description": "sample string 3",
"categoryName": "sample string 4",
"dateApplied": "2026-02-03T02:55:58.094812-06:00",
"color": "sample string 6",
"insuredDatabaseId": "24f0c587-a150-4010-8698-190e38909617",
"tagDatabaseId": "b80b4b15-2c8b-4ed2-940a-3c082b1f3c47"
}
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>f45b3783-a932-4f49-af20-bcb8ecd8ffa2</DatabaseId> <DateApplied>2026-02-03T02:55:58.094812-06:00</DateApplied> <Description>sample string 3</Description> <InsuredDatabaseId>24f0c587-a150-4010-8698-190e38909617</InsuredDatabaseId> <Name>sample string 2</Name> <TagDatabaseId>b80b4b15-2c8b-4ed2-940a-3c082b1f3c47</TagDatabaseId> </InsuredTags>