POST api/Student/AddUpdateCertificates

Request Information

URI Parameters

None.

Body Parameters

CertificatesModel
NameDescriptionTypeAdditional information
id

integer

None.

studentId

integer

None.

isSchoolLeaving

boolean

None.

ShcoolLeavingDate

date

None.

isCharacter

boolean

None.

CharacerDate

date

None.

isTestimonial

boolean

None.

TestimonialDate

date

None.

isHope

boolean

None.

HopeDate

date

None.

isDuration

boolean

None.

DurationDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "studentId": 2,
  "isSchoolLeaving": true,
  "shcoolLeavingDate": "2026-06-22T02:24:53.1196622-07:00",
  "isCharacter": true,
  "characerDate": "2026-06-22T02:24:53.1196622-07:00",
  "isTestimonial": true,
  "testimonialDate": "2026-06-22T02:24:53.1196622-07:00",
  "isHope": true,
  "hopeDate": "2026-06-22T02:24:53.1196622-07:00",
  "isDuration": true,
  "durationDate": "2026-06-22T02:24:53.1232334-07:00"
}

application/xml, text/xml

Sample:
<CertificatesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
  <CharacerDate>2026-06-22T02:24:53.1196622-07:00</CharacerDate>
  <DurationDate>2026-06-22T02:24:53.1232334-07:00</DurationDate>
  <HopeDate>2026-06-22T02:24:53.1196622-07:00</HopeDate>
  <ShcoolLeavingDate>2026-06-22T02:24:53.1196622-07:00</ShcoolLeavingDate>
  <TestimonialDate>2026-06-22T02:24:53.1196622-07:00</TestimonialDate>
  <id>1</id>
  <isCharacter>true</isCharacter>
  <isDuration>true</isDuration>
  <isHope>true</isHope>
  <isSchoolLeaving>true</isSchoolLeaving>
  <isTestimonial>true</isTestimonial>
  <studentId>2</studentId>
</CertificatesModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResponseResult
NameDescriptionTypeAdditional information
statusCode

integer

None.

status

boolean

None.

message

string

None.

data

Object

None.

ErrorCode

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "statusCode": 1,
  "status": true,
  "message": "sample string 3",
  "data": {},
  "errorCode": 5
}

application/xml, text/xml

Sample:
<ApiResponseResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
  <ErrorCode>5</ErrorCode>
  <data />
  <message>sample string 3</message>
  <status>true</status>
  <statusCode>1</statusCode>
</ApiResponseResult>