GET api/claimtags
Gets a collection of Claim Tags resources for a Company
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A list of claim tag details
Collection of ClaimTagModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TagName |
Gets or sets the tag name of the claim tag resource |
string |
None. |
| Description |
Gets or sets the description of the claim tag resource |
string |
None. |
| ClaimTagItems |
Gets or sets the claim tag items associated with this claim tag model |
Collection of ClaimTagItemModel |
None. |
| Url |
Gets or sets the link representing a link back to the resource |
string |
None. |
| ID |
Gets or sets the identifier for the resource |
integer |
None. |
Response Formats
application/json, text/json, application/json-patch+json
Sample:
[
{
"url": "sample string 4",
"id": 5,
"tagName": "sample string 2",
"description": "sample string 3",
"claimTagItems": [
{
"url": "sample string 2",
"id": 3,
"itemText": "sample string 1"
},
{
"url": "sample string 2",
"id": 3,
"itemText": "sample string 1"
}
]
},
{
"url": "sample string 4",
"id": 5,
"tagName": "sample string 2",
"description": "sample string 3",
"claimTagItems": [
{
"url": "sample string 2",
"id": 3,
"itemText": "sample string 1"
},
{
"url": "sample string 2",
"id": 3,
"itemText": "sample string 1"
}
]
}
]