POST api/v1/verify_student_data

Request Information

URI Parameters

None.

Body Parameters

studentverify
NameDescriptionTypeAdditional information
student_id

integer

None.

footfall_id

integer

None.

phone

string

None.

otp

string

None.

Request Formats

application/json, text/json

Sample:
{
  "student_id": 1,
  "footfall_id": 2,
  "phone": "sample string 3",
  "otp": "sample string 4"
}

application/xml, text/xml

Sample:
<studentverify xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <footfall_id>2</footfall_id>
  <otp>sample string 4</otp>
  <phone>sample string 3</phone>
  <student_id>1</student_id>
</studentverify>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

studentverifyresult
NameDescriptionTypeAdditional information
status

boolean

None.

data

verifyData

None.

error

string

None.

message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": true,
  "data": {
    "vendor_id": 1,
    "student_id": 2,
    "footfall_id": 3,
    "phone": "sample string 4"
  },
  "error": "sample string 2",
  "message": "sample string 3"
}

application/xml, text/xml

Sample:
<studentverifyresult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <data>
    <footfall_id>3</footfall_id>
    <phone>sample string 4</phone>
    <student_id>2</student_id>
    <vendor_id>1</vendor_id>
  </data>
  <error>sample string 2</error>
  <message>sample string 3</message>
  <status>true</status>
</studentverifyresult>