POST api/Setup/StudentWithdrawalOption

Posts the student withdrawal option.

Request Information

URI Parameters

None.

Body Parameters

The student withdrawal option.

StudentWithdrawalOption
NameDescriptionTypeAdditional information
RefundPercentage

decimal number

None.

DaysAfterRegistration

integer

None.

CreatedById

integer

None.

CreatedDate

date

None.

UpdatedById

integer

None.

UpdatedDate

date

None.

Id

integer

None.

IsActive

boolean

None.

IsDelete

boolean

None.

AcademicYearSemesterId

integer

None.

TempRefId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "RefundPercentage": 1.0,
  "DaysAfterRegistration": 2,
  "CreatedById": 1,
  "CreatedDate": "2025-12-06T03:49:28.8698332+00:00",
  "UpdatedById": 1,
  "UpdatedDate": "2025-12-06T03:49:28.8698332+00:00",
  "Id": 3,
  "IsActive": true,
  "IsDelete": true,
  "AcademicYearSemesterId": 1,
  "TempRefId": 1
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Task<IHttpActionResult>.

ResponseOfStudentWithdrawalOption
NameDescriptionTypeAdditional information
Data

StudentWithdrawalOption

None.

MiscData

Object

None.

StatusCode

integer

None.

Message

string

None.

meta

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": {
    "RefundPercentage": 1.0,
    "DaysAfterRegistration": 2,
    "CreatedById": 1,
    "CreatedDate": "2025-12-06T03:49:28.8883667+00:00",
    "UpdatedById": 1,
    "UpdatedDate": "2025-12-06T03:49:28.8883667+00:00",
    "Id": 3,
    "IsActive": true,
    "IsDelete": true,
    "AcademicYearSemesterId": 1,
    "TempRefId": 1
  },
  "MiscData": {},
  "StatusCode": 2,
  "Message": "sample string 3",
  "meta": {}
}