POST api/TermTranslation/Post?lcid={lcid}&refinerName={refinerName}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
lcid

integer

Required

refinerName

string

Required

Body Parameters

Collection of string

Request Formats

application/json, text/json

Sample:
[
  "sample string 1",
  "sample string 2"
]

text/html

Sample:
["sample string 1","sample string 2"]

application/xml, text/xml

Sample:
<ArrayOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <string>sample string 1</string>
  <string>sample string 2</string>
</ArrayOfstring>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Dictionary of string [key] and Collection of string [value]

Response Formats

application/json, text/json

Sample:
{
  "sample string 1": [
    "sample string 1",
    "sample string 2"
  ],
  "sample string 2": [
    "sample string 1",
    "sample string 2"
  ]
}

text/html

Sample:
{"sample string 1":["sample string 1","sample string 2"],"sample string 2":["sample string 1","sample string 2"]}

application/xml, text/xml

Sample:
<ArrayOfKeyValueOfstringArrayOfstringty7Ep6D1 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <KeyValueOfstringArrayOfstringty7Ep6D1>
    <Key>sample string 1</Key>
    <Value>
      <string>sample string 1</string>
      <string>sample string 2</string>
    </Value>
  </KeyValueOfstringArrayOfstringty7Ep6D1>
  <KeyValueOfstringArrayOfstringty7Ep6D1>
    <Key>sample string 2</Key>
    <Value>
      <string>sample string 1</string>
      <string>sample string 2</string>
    </Value>
  </KeyValueOfstringArrayOfstringty7Ep6D1>
</ArrayOfKeyValueOfstringArrayOfstringty7Ep6D1>