POST api/AcademicSession

Request Information

URI Parameters

None.

Body Parameters

AcademicSessionAddRequest
NameDescriptionTypeAdditional information
StartDate

date

Required

EndDate

date

Required

FinancialYear

string

Required

String length: inclusive between 0 and 50

IsActive

boolean

Required

IsParentActive

boolean

Required

IsSynced

boolean

Required

CreatedBy

integer

Required

CreatedDate

date

Required

Request Formats

application/json, text/json

Sample:
{
  "StartDate": "2026-05-27T07:58:19.7208812-07:00",
  "EndDate": "2026-05-27T07:58:19.7208812-07:00",
  "FinancialYear": "sample string 3",
  "IsActive": true,
  "IsParentActive": true,
  "IsSynced": true,
  "CreatedBy": 7,
  "CreatedDate": "2026-05-27T07:58:19.7208812-07:00"
}

text/html

Sample:
{"StartDate":"2026-05-27T07:58:19.7208812-07:00","EndDate":"2026-05-27T07:58:19.7208812-07:00","FinancialYear":"sample string 3","IsActive":true,"IsParentActive":true,"IsSynced":true,"CreatedBy":7,"CreatedDate":"2026-05-27T07:58:19.7208812-07:00"}

application/xml, text/xml

Sample:
<AcademicSessionAddRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EduStudio360API.Models">
  <CreatedBy>7</CreatedBy>
  <CreatedDate>2026-05-27T07:58:19.7208812-07:00</CreatedDate>
  <EndDate>2026-05-27T07:58:19.7208812-07:00</EndDate>
  <FinancialYear>sample string 3</FinancialYear>
  <IsActive>true</IsActive>
  <IsParentActive>true</IsParentActive>
  <IsSynced>true</IsSynced>
  <StartDate>2026-05-27T07:58:19.7208812-07:00</StartDate>
</AcademicSessionAddRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html, application/xml, text/xml

Sample:

Sample not available.