Batch List
Batch List
List all batches for a company
QueryArguments
totalCount | Total number of records |
pageSize | Number of returned records in current api call |
page | Current page number of returned records |
Definition:
POST https://app.alphalearn.com/webapi/v1/batch-list
Example Request:
curl -X POST \ https://app.alphalearn.com/webapi/v1/batch-list \ -H 'authorization: Bearer {Authorization Token}' \Example Response:
200 OK
{ "success": true, "data": { "batch_list": [ { "id": "integer", "name": "string", "description": "string" }, ], "totalCount": "integer", "pageSize": "integer", "page": "integer" } }