meta {
  name: Create Student
  type: http
  seq: 4
}

post {
  url: {{base_url}}/classroom-compliance/classes/:classId/students
  body: json
  auth: inherit
}

params:path {
  classId: {{class_id}}
}

body:json {
  {
    "name": "John F. Kennedy"
  }
}