GET api/GetExamInterviewQuestionsList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ExamInterviewQuestionsModel
NameDescriptionTypeAdditional information
InterviewQ_Id

integer

None.

InterviewQ_Title

string

None.

Interview_Questions

string

None.

DateStamp

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "InterviewQ_Id": 1,
    "InterviewQ_Title": "sample string 2",
    "Interview_Questions": "sample string 3",
    "DateStamp": "sample string 4"
  },
  {
    "InterviewQ_Id": 1,
    "InterviewQ_Title": "sample string 2",
    "Interview_Questions": "sample string 3",
    "DateStamp": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfExamInterviewQuestionsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VullamAPIProject.Models">
  <ExamInterviewQuestionsModel>
    <DateStamp>sample string 4</DateStamp>
    <InterviewQ_Id>1</InterviewQ_Id>
    <InterviewQ_Title>sample string 2</InterviewQ_Title>
    <Interview_Questions>sample string 3</Interview_Questions>
  </ExamInterviewQuestionsModel>
  <ExamInterviewQuestionsModel>
    <DateStamp>sample string 4</DateStamp>
    <InterviewQ_Id>1</InterviewQ_Id>
    <InterviewQ_Title>sample string 2</InterviewQ_Title>
    <Interview_Questions>sample string 3</Interview_Questions>
  </ExamInterviewQuestionsModel>
</ArrayOfExamInterviewQuestionsModel>