{ "id": 229, "content_id": 0, "uid": 45552, "comment": "This is a media album comment", "created": 0, "status": 0, "links": { "self": "http:\/\/...\/comments\/229" }}
XML
<?xml version="1.0" encoding="utf-8" ?><result> <id>229</id> <content_id>0</content_id> <uid>45552</uid> <comment>This is a media album comment</comment> <created>0</created> <status>0</status> <links> <self>http://.../comments/229</self> </links></result>
list
View a list of comments (paged)
Path
GET https://api.schoology.com/v1/[realm]/albums/{id}/content/{content_id}/comments
Content
none
Return
A collection of comment objects, each one containing comment fields
JSON
{ "comment": [ { "id": 229, "content_id": 17861, "uid": 45552, "comment": "This is a media album comment", "created": 1388420575, "status": 1 } ]}
XML
<?xml version="1.0" encoding="utf-8" ?><result> <comment> <id>229</id> <content_id>17861</content_id> <uid>45552</uid> <comment>This is a media album comment</comment> <created>1388420575</created> <status>1</status> </comment></result>
view
View a specified comment
Path
GET https://api.schoology.com/v1/[realm]/albums/{id}/content/{content_id}/comments/{comment_id}
{ "id": 229, "content_id": 17861, "uid": 45552, "comment": "This is a media album comment", "created": 1388420575, "status": 1}
XML
<?xml version="1.0" encoding="utf-8" ?><result> <id>229</id> <content_id>17861</content_id> <uid>45552</uid> <comment>This is a media album comment</comment> <created>1388420575</created> <status>1</status></result>