POST api/Chatapi/GetSubElements

Request Information

URI Parameters

None.

Body Parameters

GetSubElement
NameDescriptionTypeAdditional information
parentInputElementId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "parentInputElementId": 1
}

application/xml, text/xml

Sample:
<GetSubElement xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChatBiri.Models">
  <parentInputElementId>1</parentInputElementId>
</GetSubElement>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of InputElementSelectReturn
NameDescriptionTypeAdditional information
id

integer

None.

text

string

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<ArrayOfInputElementSelectReturn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChatBiri.Models">
  <InputElementSelectReturn>
    <id>1</id>
    <text>sample string 2</text>
  </InputElementSelectReturn>
  <InputElementSelectReturn>
    <id>1</id>
    <text>sample string 2</text>
  </InputElementSelectReturn>
</ArrayOfInputElementSelectReturn>