POST api/Chatapi/SaveInputElements

Request Information

URI Parameters

None.

Body Parameters

SaveInputElements
NameDescriptionTypeAdditional information
inputReturnElements

Collection of InputReturnElements

None.

globalVariableId

integer

None.

scenarioId

integer

None.

token

string

None.

filemodel

FileModel

None.

Request Formats

application/json, text/json

Sample:
{
  "inputReturnElements": [
    {
      "ElementName": "sample string 1",
      "ElementInputId": "sample string 2",
      "ElementNo": "sample string 3",
      "ElementValue": "sample string 4",
      "Token": "sample string 5",
      "ScenarioId": "sample string 6",
      "VariableType": "sample string 7",
      "VariableCounter": "sample string 8"
    },
    {
      "ElementName": "sample string 1",
      "ElementInputId": "sample string 2",
      "ElementNo": "sample string 3",
      "ElementValue": "sample string 4",
      "Token": "sample string 5",
      "ScenarioId": "sample string 6",
      "VariableType": "sample string 7",
      "VariableCounter": "sample string 8"
    }
  ],
  "globalVariableId": 1,
  "scenarioId": 2,
  "token": "sample string 3",
  "filemodel": {
    "contentType": "sample string 1",
    "contentAsBase64String": "sample string 2",
    "fileName": "sample string 3"
  }
}

application/xml, text/xml

Sample:
<SaveInputElements xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChatBiri.Models">
  <filemodel>
    <contentAsBase64String>sample string 2</contentAsBase64String>
    <contentType>sample string 1</contentType>
    <fileName>sample string 3</fileName>
  </filemodel>
  <globalVariableId>1</globalVariableId>
  <inputReturnElements>
    <InputReturnElements>
      <ElementInputId>sample string 2</ElementInputId>
      <ElementName>sample string 1</ElementName>
      <ElementNo>sample string 3</ElementNo>
      <ElementValue>sample string 4</ElementValue>
      <ScenarioId>sample string 6</ScenarioId>
      <Token>sample string 5</Token>
      <VariableCounter>sample string 8</VariableCounter>
      <VariableType>sample string 7</VariableType>
    </InputReturnElements>
    <InputReturnElements>
      <ElementInputId>sample string 2</ElementInputId>
      <ElementName>sample string 1</ElementName>
      <ElementNo>sample string 3</ElementNo>
      <ElementValue>sample string 4</ElementValue>
      <ScenarioId>sample string 6</ScenarioId>
      <Token>sample string 5</Token>
      <VariableCounter>sample string 8</VariableCounter>
      <VariableType>sample string 7</VariableType>
    </InputReturnElements>
  </inputReturnElements>
  <scenarioId>2</scenarioId>
  <token>sample string 3</token>
</SaveInputElements>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>