POST
/v1/drop-ins/
curl \
--request POST 'https://classmanager.test/v1/drop-ins/' \
--header "Content-Type: application/json" \
--data '{"courseId":"cls_abc123","studentId":"std_def456","studentIds":["std_def456","std_ghi789"],"dropInDate":"2025-01-15","dropInTime":"10:00"}'
Request examples
{
"courseId": "cls_abc123",
"studentId": "std_def456",
"studentIds": [
"std_def456",
"std_ghi789"
],
"dropInDate": "2025-01-15",
"dropInTime": "10:00"
}
Response examples (200)
{
"id": "dpi_xxxxxxxx",
"companyId": "co_xxxxxxxx",
"courseId": "cls_xxxxxxxx",
"studentId": "stu_xxxxxxxx",
"dropInDate": "2023-12-05",
"dropInTime": "23:15"
}
Response examples (403)
{
"statusCode": 42.0,
"messages": [
"string"
],
"exception": {}
}
Response examples (422)
{
"statusCode": 42.0,
"messages": [
"string"
],
"exception": {}
}