POST api/Insured/InsuredTags

Insured tags list endpoint.

Request Information

URI Parameters

None.

Body Parameters

List of insured database Ids.

InsuredDataBaseIds
NameDescriptionTypeAdditional information
InsuredDataBaseId

Collection of globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "insuredDataBaseId": [
    "694258cd-d3a3-4551-821d-bba1de55ab67",
    "6f9a3e12-2efb-40d1-8a34-13d3b5760b71"
  ]
}

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>694258cd-d3a3-4551-821d-bba1de55ab67</d2p1:guid>
    <d2p1:guid>6f9a3e12-2efb-40d1-8a34-13d3b5760b71</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
NameDescriptionTypeAdditional 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": "6a7d72fc-aa5c-4439-8a23-c478b430361d",
  "name": "sample string 2",
  "description": "sample string 3",
  "categoryName": "sample string 4",
  "dateApplied": "2024-04-26T16:51:24.1447743-05:00",
  "color": "sample string 6",
  "insuredDatabaseId": "73b7dd93-c189-446f-abfc-0ce87a8bfea0",
  "tagDatabaseId": "ed857d52-0d73-4d6d-9b3c-51b2585b4f30"
}

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>6a7d72fc-aa5c-4439-8a23-c478b430361d</DatabaseId>
  <DateApplied>2024-04-26T16:51:24.1447743-05:00</DateApplied>
  <Description>sample string 3</Description>
  <InsuredDatabaseId>73b7dd93-c189-446f-abfc-0ce87a8bfea0</InsuredDatabaseId>
  <Name>sample string 2</Name>
  <TagDatabaseId>ed857d52-0d73-4d6d-9b3c-51b2585b4f30</TagDatabaseId>
</InsuredTags>