Trainees in Batch
List all trainees in a batch
HTTP REQUEST
POST https://app.alphalearn.com/webapi/v1/trainees-in-batch
QUERY PARAMETERS
| Field | Type | Description |
|---|---|---|
| batchID required |
Integer | The batch id |
| pageSize | Integer | Number of records to be returned with in a single API call. Default is 20 |
| page | Integer | Page number of the records. |
Example Response:
200 OK
{
"success": true,
"data": {
"user_batch": [
{
"id": "integer",
"fname": "string",
"lname": "string",
"email": "string",
"rollno": "string"
},
],
"totalCount": "integer",
"pageSize": "integer",
"page": "integer"
}
}