application/json
POST
/api/v1/students/roll-calls
cURL (application/json)
curl \
--request POST 'http://api.example.com/api/v1/students/roll-calls' \
--header "Content-Type: application/json" \
--data '{"studentId":42,"rollCallId":42}'
curl \
--request POST 'http://api.example.com/api/v1/students/roll-calls' \
--header "Content-Type: text/json"
curl \
--request POST 'http://api.example.com/api/v1/students/roll-calls' \
--header "Content-Type: application/*+json"
Request examples
{
"studentId": 42,
"rollCallId": 42
}
Request examples
{
"studentId": 42,
"rollCallId": 42
}
Request examples
{
"studentId": 42,
"rollCallId": 42
}