GET api/Setup/SemiDepartments?collegeId={collegeId}

Return Departments As SemiDepartments Model

Request Information

URI Parameters

NameDescriptionTypeAdditional information
collegeId

College Id of the College for which you want to fetch the Departments

integer

None.

Body Parameters

None.

Response Information

Resource Description

The Data returned. Basically the Array/List of the Departments

ResponseOfSemiDepartment[]
NameDescriptionTypeAdditional information
Data

Collection of SemiDepartment

None.

MiscData

Object

None.

StatusCode

integer

None.

Message

string

None.

meta

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": [
    {
      "CollegeId": 1,
      "CollegeName": "sample string 2",
      "Name": "sample string 3",
      "PrerequisiteRequired": true,
      "MaxPaymentDay": 5,
      "ChairmanName": "sample string 6",
      "CurrencyShortCode": "sample string 7",
      "CurrencyId": 1,
      "Id": 8,
      "CreatedById": 1,
      "UpdatedById": 1,
      "AcademicYearSemesterId": 1,
      "TempRefId": 1,
      "CreatedDate": "2025-12-06T03:52:09.3309205+00:00",
      "UpdatedDate": "2025-12-06T03:52:09.3309205+00:00",
      "IsActive": true,
      "IsDelete": true
    },
    {
      "CollegeId": 1,
      "CollegeName": "sample string 2",
      "Name": "sample string 3",
      "PrerequisiteRequired": true,
      "MaxPaymentDay": 5,
      "ChairmanName": "sample string 6",
      "CurrencyShortCode": "sample string 7",
      "CurrencyId": 1,
      "Id": 8,
      "CreatedById": 1,
      "UpdatedById": 1,
      "AcademicYearSemesterId": 1,
      "TempRefId": 1,
      "CreatedDate": "2025-12-06T03:52:09.3309205+00:00",
      "UpdatedDate": "2025-12-06T03:52:09.3309205+00:00",
      "IsActive": true,
      "IsDelete": true
    }
  ],
  "MiscData": {},
  "StatusCode": 2,
  "Message": "sample string 3",
  "meta": {}
}