POST api/Center/AddSchoolEnrollment/{schoolid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
schoolid

string

Required

Body Parameters

SchoolEnrollment
NameDescriptionTypeAdditional information
enrollid

integer

None.

schid

string

None.

standard

string

None.

students

integer

None.

createdby

string

None.

createdon

date

None.

updatedby

string

None.

updatedon

date

None.

boys

integer

None.

girls

integer

None.

totstudent

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "enrollid": 1,
  "schid": "sample string 2",
  "standard": "sample string 3",
  "students": 1,
  "createdby": "sample string 4",
  "createdon": "2025-05-10T11:04:55.6766517+05:30",
  "updatedby": "sample string 5",
  "updatedon": "2025-05-10T11:04:55.6766517+05:30",
  "boys": 1,
  "girls": 1,
  "totstudent": 1
}

application/xml, text/xml

Sample:
<SchoolEnrollment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models">
  <boys>1</boys>
  <createdby>sample string 4</createdby>
  <createdon>2025-05-10T11:04:55.6766517+05:30</createdon>
  <enrollid>1</enrollid>
  <girls>1</girls>
  <schid>sample string 2</schid>
  <standard>sample string 3</standard>
  <students>1</students>
  <totstudent>1</totstudent>
  <updatedby>sample string 5</updatedby>
  <updatedon>2025-05-10T11:04:55.6766517+05:30</updatedon>
</SchoolEnrollment>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>