GET api/Trainer/StudentsListByClassDetails?ClassId={ClassId}&Week={Week}

Get student list by class details for trainer

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ClassId

Class Id

integer

Required

Week

integer

None.

Body Parameters

None.

Response Information

Resource Description

TrainerResponse
NameDescriptionTypeAdditional information
Data

Object

None.

IsSuccess

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": {},
  "IsSuccess": true,
  "Message": "sample string 3"
}

application/xml, text/xml

Sample:
<TrainerResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileApp_WebAPI.Models.Trainer">
  <IsSuccess xmlns="http://schemas.datacontract.org/2004/07/MobileApp_WebAPI.Code.Utility">true</IsSuccess>
  <Message xmlns="http://schemas.datacontract.org/2004/07/MobileApp_WebAPI.Code.Utility">sample string 3</Message>
  <Data />
</TrainerResponse>