GET api/claimtags/{id}

Gets a claim tag resource

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Claim tag identifier

integer

Required

Body Parameters

None.

Response Information

Resource Description

A claim tag resource

ClaimTagModel
NameDescriptionTypeAdditional 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"
    }
  ]
}