curl -X GET https://api.chessplay.io/api/v1/batches/1/ \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
"id": 1,
"name": "Beginner Batch",
"coach": {...},
"students": [...],
"student_count": 15
}
Retrieve a specific batch
curl -X GET https://api.chessplay.io/api/v1/batches/1/ \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
"id": 1,
"name": "Beginner Batch",
"coach": {...},
"students": [...],
"student_count": 15
}
Was this page helpful?