Skip to main content
POST
https://api.chessplay.io
/
api
/
v1
/
batches
curl -X POST https://api.chessplay.io/api/v1/batches/ \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"name": "Advanced Batch", "coach_id": 5}'
{
  "id": 2,
  "name": "Advanced Batch",
  "coach": {...},
  "students": [],
  "student_count": 0
}

Body Parameters

name
string
required
Batch name
coach_id
integer
required
Coach ID
curl -X POST https://api.chessplay.io/api/v1/batches/ \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"name": "Advanced Batch", "coach_id": 5}'
{
  "id": 2,
  "name": "Advanced Batch",
  "coach": {...},
  "students": [],
  "student_count": 0
}
Admin only