POST Provider/Task/RequestFeedback
Save the feedback from a provider regarding the just finished session
Request Information
URI Parameters
None.
Body Parameters
ParaRequestProviderFeedbackName | Description | Type | Additional information |
---|---|---|---|
FeedbackQuestionSetName | string |
None. |
|
Answer1 | integer |
None. |
|
Answer2 | integer |
None. |
|
Answer3 | integer |
None. |
|
Answer4 | integer |
None. |
|
Answer5 | integer |
None. |
|
Note | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "FeedbackQuestionSetName": "sample string 1", "Answer1": 2, "Answer2": 3, "Answer3": 4, "Answer4": 5, "Answer5": 6, "Note": "sample string 7" }
application/xml, text/xml
Sample:
<ParaRequestProviderFeedback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <Answer1>2</Answer1> <Answer2>3</Answer2> <Answer3>4</Answer3> <Answer4>5</Answer4> <Answer5>6</Answer5> <FeedbackQuestionSetName>sample string 1</FeedbackQuestionSetName> <Note>sample string 7</Note> </ParaRequestProviderFeedback>
Response Information
Resource Description
ResultGeneralName | Description | Type | Additional information |
---|---|---|---|
Successful | boolean |
None. |
|
Reason | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Successful": true, "Reason": "sample string 2" }
application/xml, text/xml
Sample:
<ResultGeneral xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <Reason>sample string 2</Reason> <Successful>true</Successful> </ResultGeneral>