POST api/Enquiry/TodaysFollowUp

Request Information

URI Parameters

None.

Body Parameters

Enquiry
NameDescriptionTypeAdditional information
StudentName

string

None.

SearchType

string

None.

PageNo

integer

None.

FrachiseeId

integer

None.

StudentId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "StudentName": "sample string 1",
  "SearchType": "sample string 2",
  "PageNo": 3,
  "FrachiseeId": 4,
  "StudentId": 5
}

application/xml, text/xml

Sample:
<Enquiry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models.Zica">
  <FrachiseeId>4</FrachiseeId>
  <PageNo>3</PageNo>
  <SearchType>sample string 2</SearchType>
  <StudentId>5</StudentId>
  <StudentName>sample string 1</StudentName>
</Enquiry>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ModelResponse
NameDescriptionTypeAdditional information
ResponseCode

integer

None.

ResponseMessage

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "ResponseMessage": "sample string 2",
  "Data": {}
}

application/xml, text/xml

Sample:
<ModelResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models.Zica">
  <Data />
  <ResponseCode>1</ResponseCode>
  <ResponseMessage>sample string 2</ResponseMessage>
</ModelResponse>