PUT
/v1/drop-ins/{id}
curl \
--request PUT 'https://classmanager.test/v1/drop-ins/dpi_xxxxxxxx' \
--header "Content-Type: application/json" \
--data '{"courseId":"cls_abc123","studentId":"std_def456","dropInDate":"2025-01-15","dropInTime":"10:00:00"}'
Request examples
{
"courseId": "cls_abc123",
"studentId": "std_def456",
"dropInDate": "2025-01-15",
"dropInTime": "10:00: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 (404)
{
"statusCode": 42.0,
"messages": [
"string"
],
"exception": {}
}