POST api/Responses/getData

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of vResponse
NameDescriptionTypeAdditional information
ResponseID

integer

None.

IntentID

integer

None.

LanguageID

integer

None.

ResponseName

string

None.

RefResponseID

integer

None.

ResponseEnglish

string

None.

IsExitResponse

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ResponseID": 1,
    "IntentID": 2,
    "LanguageID": 3,
    "ResponseName": "sample string 4",
    "RefResponseID": 1,
    "ResponseEnglish": "sample string 5",
    "IsExitResponse": true
  },
  {
    "ResponseID": 1,
    "IntentID": 2,
    "LanguageID": 3,
    "ResponseName": "sample string 4",
    "RefResponseID": 1,
    "ResponseEnglish": "sample string 5",
    "IsExitResponse": true
  }
]

text/html, application/octet-stream

Sample:
[{"ResponseID":1,"IntentID":2,"LanguageID":3,"ResponseName":"sample string 4","RefResponseID":1,"ResponseEnglish":"sample string 5","IsExitResponse":true},{"ResponseID":1,"IntentID":2,"LanguageID":3,"ResponseName":"sample string 4","RefResponseID":1,"ResponseEnglish":"sample string 5","IsExitResponse":true}]

application/xml, text/xml

Sample:
<ArrayOfvResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChatBot.Data">
  <vResponse>
    <IntentID>2</IntentID>
    <IsExitResponse>true</IsExitResponse>
    <LanguageID>3</LanguageID>
    <RefResponseID>1</RefResponseID>
    <ResponseEnglish>sample string 5</ResponseEnglish>
    <ResponseID>1</ResponseID>
    <ResponseName>sample string 4</ResponseName>
  </vResponse>
  <vResponse>
    <IntentID>2</IntentID>
    <IsExitResponse>true</IsExitResponse>
    <LanguageID>3</LanguageID>
    <RefResponseID>1</RefResponseID>
    <ResponseEnglish>sample string 5</ResponseEnglish>
    <ResponseID>1</ResponseID>
    <ResponseName>sample string 4</ResponseName>
  </vResponse>
</ArrayOfvResponse>