GET {clientId}/Config/TextTags

Retrieve all Text Tags.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

Your required clientId used to access the WebAPI. A 404 is returned if this value is invalid.

string

Required

Body Parameters

None.

Response Information

Response Codes

  • Unauthorized (401)
  • InternalServerError (500)

Resource Description

Collection of ConfigTextTag
NameDescriptionTypeAdditional information
OverwriteExisting

boolean

None.

Key

string

Required

Min length: 1

Locales

Collection of ConfigLocaleIDOnly

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "OverwriteExisting": true,
    "Key": "sample string 2",
    "Locales": [
      {
        "ID": "sample string 1"
      }
    ]
  }
]

application/xml, text/xml

Sample:
<ArrayOfConfigTextTag xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyPreferences.REST.ConfigModels">
  <ConfigTextTag>
    <Key>sample string 2</Key>
    <Locales>
      <ConfigLocaleIDOnly>
        <ID>sample string 1</ID>
      </ConfigLocaleIDOnly>
    </Locales>
    <OverwriteExisting>true</OverwriteExisting>
  </ConfigTextTag>
</ArrayOfConfigTextTag>