Submit student focus
POST musora-api/submit-student-focus-form
- Only authenticated user can access the endpoint
path|query|body | key | required | description |
---|---|---|---|
body | experience | yes | |
body | improvement | yes | |
body | weakness | yes | |
body | instructor_focus | yes | |
body | goal | yes |
$.ajax({
url: 'https://www.musora.com' +
'/musora-api/submit-student-focus-form',
type: 'post',
dataType: 'json',
data:{
"experience":"Lorem ipsum",
"improvement":"Lorem",
"weakness":"Lorem ...",
"instructor_focus":"cccc",
"goal":"test"
},
success: function(response) {
// handle success
},
error: function(response) {
// handle error
}
});
{
"success": true,
"title": "Thanks for your submission!",
"message": "Your submission has been sent to a Drumeo Instructor. Typically, they'll email you within 48 hours to let you know when your review and custom Student Plan will be ready!"
}