GET PlanCare2Api/DynamicData/ApplicationCustomLabel

Gets the custom label for application components

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Displays a list custom application labels for certain application components

Collection of ApplicationCustomLabelResult
Name Description Type Additional information
Key

The name of the application component

string

-

Singularvalue

The singular value of the custom label

string

-

Pluralvalue

The plural value of the custom label

string

-

Description

The description of the application component

string

-

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Key": "sample string 1",
    "Singularvalue": "sample string 2",
    "Pluralvalue": "sample string 3",
    "Description": "sample string 4"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDynamicDataController.ApplicationCustomLabelResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Controllers">
  <DynamicDataController.ApplicationCustomLabelResult>
    <Description>sample string 4</Description>
    <Key>sample string 1</Key>
    <Pluralvalue>sample string 3</Pluralvalue>
    <Singularvalue>sample string 2</Singularvalue>
  </DynamicDataController.ApplicationCustomLabelResult>
  <DynamicDataController.ApplicationCustomLabelResult>
    <Description>sample string 4</Description>
    <Key>sample string 1</Key>
    <Pluralvalue>sample string 3</Pluralvalue>
    <Singularvalue>sample string 2</Singularvalue>
  </DynamicDataController.ApplicationCustomLabelResult>
</ArrayOfDynamicDataController.ApplicationCustomLabelResult>