Skip to content
ifeify edited this page Jan 10, 2019 · 4 revisions

Assign Tutors to Course

Updates the list of tutors for a course. You can safely post to this route multiple times, the server will insert if not present.

NOTE: All communication is done via SSL/TLS

HTTP request sample

POST /courses/{course_id}/tutors HTTP/1.1
User-Agent: TutorsToGo/v1/iOS/11.1
Host: www.somewhere.com
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
Content-Type: application/json 

{
    "course_id": 345629,
    "tutors": 
      [{
          "id": "Xydstdsydus89890aas",
          "username": "johncanteach88"
       },
       {
          "id": "Mydsdus89890apPXlas",
          "username": "lemmetutoryou97"
       }]
}                

Success Response

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8

{
    "course_id": 345629,
    "tutors": 
      [{
          "id": "Xydstdsydus89890aas",
          "pic": "https://www.amazon.com/s3/pic.jpg",
          "username": "johncanteach88",
          "promo_message": "I'm very passionate about teaching Mathematics",
          "rating": -1,
          "num_user_ratings": 0,
          "links": [
             "self": "https://api.tutorstogo.com/v1/tutor/Xydstdsydus89890aas"
          ]
       },
       {
          "id": "Mydsdus89890apPXlas",
          "pic": "https://www.amazon.com/s3/pic.jpg",
          "username": "lemmetutoryou97",
          "promo_message": "I live breathe love Organic Chemistry. Always wanted to study medicine since I was a kid",
          "rating": -1,
          "num_user_ratings": 0,
          "links": [
             "self": "https://api.tutorstogo.com/v1/tutor/Mydsdus89890apPXlas"
          ]
       }]
}  

Error Response

HTTP/1.1 400 Bad Request
Content-Type: application/json

{
    "error": "Invalid tutor id's",
}