GET api/application/educationalhistory

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ServiceResponseOfListOfApplicantEducationalHistoryDTO
NameDescriptionTypeAdditional information
HttpStatusCode

HttpStatusCode

None.

ResponseMessage

string

None.

HasError

boolean

None.

Data

Collection of ApplicantEducationalHistoryDTO

None.

Response Formats

application/json, text/json

Sample:
{
  "httpStatusCode": 100,
  "responseMessage": "sample string 1",
  "hasError": true,
  "data": [
    {
      "educationalHistoryID": 1,
      "name": "sample string 2",
      "address": "sample string 3",
      "from": 4,
      "to": 5,
      "typeOfSchool": 0
    },
    {
      "educationalHistoryID": 1,
      "name": "sample string 2",
      "address": "sample string 3",
      "from": 4,
      "to": 5,
      "typeOfSchool": 0
    }
  ]
}

text/html

Sample:
{"httpStatusCode":100,"responseMessage":"sample string 1","hasError":true,"data":[{"educationalHistoryID":1,"name":"sample string 2","address":"sample string 3","from":4,"to":5,"typeOfSchool":0},{"educationalHistoryID":1,"name":"sample string 2","address":"sample string 3","from":4,"to":5,"typeOfSchool":0}]}

text/xml

Sample:
<ServiceResponseOfArrayOfApplicantEducationalHistoryDTO_P_PoWU07l xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApplicationPortalAPI.Models">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/ApplicationPortalAPI.Models.DTOs.Application">
    <d2p1:ApplicantEducationalHistoryDTO>
      <d2p1:Address>sample string 3</d2p1:Address>
      <d2p1:EducationalHistoryID>1</d2p1:EducationalHistoryID>
      <d2p1:From>4</d2p1:From>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:To>5</d2p1:To>
      <d2p1:TypeOfSchool>NotSet</d2p1:TypeOfSchool>
    </d2p1:ApplicantEducationalHistoryDTO>
    <d2p1:ApplicantEducationalHistoryDTO>
      <d2p1:Address>sample string 3</d2p1:Address>
      <d2p1:EducationalHistoryID>1</d2p1:EducationalHistoryID>
      <d2p1:From>4</d2p1:From>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:To>5</d2p1:To>
      <d2p1:TypeOfSchool>NotSet</d2p1:TypeOfSchool>
    </d2p1:ApplicantEducationalHistoryDTO>
  </Data>
  <HasError>true</HasError>
  <HttpStatusCode>Continue</HttpStatusCode>
  <ResponseMessage>sample string 1</ResponseMessage>
</ServiceResponseOfArrayOfApplicantEducationalHistoryDTO_P_PoWU07l>