Comments
              
              
              
              
              
              POST /v1/workshops/:workshop_id/cards/:card_id/comments
              
              Parameters
              
              
                
                  
                    | Name | Type | Description | 
                
                
                  
                    | content | string | Required the content of the comment | 
                
              
              
              Response
              
              
              
              {
  "id": "5007d396eb7abf319a000047",
  "created_at": "2012-04-12T14:14:23+02:00",
  "content": "The content of the comment",
  "user_id": "5007d396eb7abf319a000047"
}
              
              
              
              GET /v1/workshops/:workshop_id/cards/:card_id/comments
              
              Response
              
              
              
              [
  {
    "id": "5007d396eb7abf319a000047",
    "created_at": "2012-04-12T14:14:23+02:00",
    "content": "The content of the comment",
    "user_id": "5007d396eb7abf319a000047"
  }
]
              
              
              
              GET /v1/workshops/:workshop_id/cards/:card_id/comments/:id
              
              Response
              
              
              
              {
  "id": "5007d396eb7abf319a000047",
  "created_at": "2012-04-12T14:14:23+02:00",
  "content": "The content of the comment",
  "user_id": "5007d396eb7abf319a000047"
}
              
              
              
              DELETE /v1/workshops/:workshop_id/cards/:card_id/comments/:id
              
              Response