GET PlanCare2Api/RootData/ApplicationCustomLabels

Fetch available customer specific terms

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Returns a list of available custom labels

Collection of ApplicationCustomLabel
NameDescriptionTypeAdditional information
Key

Internal PlanCare2 (Dutch) name of the label

string

None

SingularValue

Customized singular value as used by the customer

string

None

PluralValue

Customized plural value as used by the customer

string

None

Description

Explanation of the used term

string

None

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:
<ArrayOfApplicationCustomLabel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.RootData">
  <ApplicationCustomLabel>
    <Description>sample string 4</Description>
    <Key>sample string 1</Key>
    <PluralValue>sample string 3</PluralValue>
    <SingularValue>sample string 2</SingularValue>
  </ApplicationCustomLabel>
  <ApplicationCustomLabel>
    <Description>sample string 4</Description>
    <Key>sample string 1</Key>
    <PluralValue>sample string 3</PluralValue>
    <SingularValue>sample string 2</SingularValue>
  </ApplicationCustomLabel>
</ArrayOfApplicationCustomLabel>