GET CourseCategory/GetCourseCategoryById?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

CourseCategoryPO
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Description

string

None.

ParentId

integer

None.

ParentName

string

None.

CreateId

integer

None.

CreateTime

date

None.

LastModifyPeopleId

integer

None.

LastModifyTime

date

None.

State

integer

None.

Type

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Name": "sample string 2",
  "Description": "sample string 3",
  "ParentId": 4,
  "ParentName": "sample string 5",
  "CreateId": 6,
  "CreateTime": "2026-04-13T13:49:55.0417908+08:00",
  "LastModifyPeopleId": 1,
  "LastModifyTime": "2026-04-13T13:49:55.0417908+08:00",
  "State": 8,
  "Type": 9
}

application/xml, text/xml

Sample:
<CourseCategoryPO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Zs.Ylx.Resources.PO.Background">
  <CreateId>6</CreateId>
  <CreateTime>2026-04-13T13:49:55.0417908+08:00</CreateTime>
  <Description>sample string 3</Description>
  <Id>1</Id>
  <LastModifyPeopleId>1</LastModifyPeopleId>
  <LastModifyTime>2026-04-13T13:49:55.0417908+08:00</LastModifyTime>
  <Name>sample string 2</Name>
  <ParentId>4</ParentId>
  <ParentName>sample string 5</ParentName>
  <State>8</State>
  <Type>9</Type>
</CourseCategoryPO>