POST api/getAssignedQuestions
Request Information
URI Parameters
None.
Body Parameters
AssignedQuestionsRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseType | integer |
None. |
|
| AssignedType | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ResponseType": 1,
"AssignedType": 2
}
text/html
Sample:
{"ResponseType":1,"AssignedType":2}
application/xml, text/xml
Sample:
<AssignedQuestionsRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Services.Models"> <AssignedType>2</AssignedType> <ResponseType>1</ResponseType> </AssignedQuestionsRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BaseResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Object |
None. |
|
| ErrorMessage | string |
None. |
|
| Status | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {},
"ErrorMessage": "sample string 2",
"Status": true
}
text/html
Sample:
{"Data":{},"ErrorMessage":"sample string 2","Status":true}
application/xml, text/xml
Sample:
<BaseResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Services.Models"> <Data /> <ErrorMessage>sample string 2</ErrorMessage> <Status>true</Status> </BaseResponseModel>