https://floating-temple-72911.herokuapp.com/api/user
{
"user_email": "[email protected]",
"user_fname": "test_fname",
"user_lname": "test_lname",
"user_image": "test image"
}
https://floating-temple-72911.herokuapp.com/api/user/{id}
https://floating-temple-72911.herokuapp.com/api/user/{id}
{
"user_email": "[email protected]",
"user_fname": "test_update_fname",
"user_lname": "test_update_lname",
"user_image": "test image update"
}
https://floating-temple-72911.herokuapp.com/api/user/{id}/survey
{
"user_id": "1",
"survey_name": "Drink choice",
"survey_desc": "Survey to find most popular drink",
"survey_type": "public",
"survey_start_date": "2018-03-16",
"survey_end_date": "2018-03-19",
"SurveyQuestions": [
{
"question_type": "choice",
"question_text": "What is your fav drink?",
"SurveyQuestionChoices": [
{
"choice_text": "Coke"
},
{
"choice_text": "MountainDew"
},
{
"choice_text": "Pepsi"
},
{
"choice_text": "ThumbsUp"
}
]
}
]
}
https://floating-temple-72911.herokuapp.com/api/user/{id}/survey
https://floating-temple-72911.herokuapp.com/api/user/{id}/survey?search={search string}
https://floating-temple-72911.herokuapp.com/api/user/{id}/survey/{surveyId}
https://floating-temple-72911.herokuapp.com/api/user/{id}/survey/{surveyId}/response
{
"SurveyQuestions": [
{
"question_id": 1,
"choice_id": 2
},
{
"question_id": 2,
"choice_id": 3
}
]
}
https://floating-temple-72911.herokuapp.com/api/user/{id}/survey/{surveyId}/response