teacher-tools/bruno-api/Classroom Compliance/Set Desk Assignments.bru

31 lines
390 B
Plaintext
Raw Normal View History

meta {
name: Set Desk Assignments
type: http
seq: 9
}
post {
url: {{base_url}}/classroom-compliance/classes/:classId/desk-assignments
body: json
auth: inherit
}
params:path {
classId: {{class_id}}
}
body:json {
{
"entries": [
{
"deskNumber": 1,
"studentId": 1
},
{
"deskNumber": 2,
"studentId": 2
}
]
}
}