Activity Feed
- Got a Like for Re: Why is the /entries endpoint empty after successfully POSTing an entry?. 08-06-2020 02:01 AM
- Got a Like for Re: Canvas Data Access Offering: Share Your Thoughts about Datasets. 02-21-2020 11:59 AM
- Got a Like for Re: Canvas Data Access Offering: Share Your Thoughts about Datasets. 02-20-2020 09:50 AM
- Posted Re: Canvas Data Access Offering: Share Your Thoughts about Datasets on The Product Blog. 02-20-2020 03:47 AM
- Liked Re: Canvas Data Access Offering: Share Your Thoughts about Datasets for oxana. 02-20-2020 03:45 AM
- Got a Like for Re: Canvas Data Access Offering: Share Your Thoughts about Datasets. 02-12-2020 08:20 AM
- Posted Re: Canvas Data Access Offering: Share Your Thoughts about Datasets on The Product Blog. 02-10-2020 10:13 AM
- Liked API in OpenAPI format for dtod. 04-07-2019 07:33 AM
- Got a Like for Re: Why is the /entries endpoint empty after successfully POSTing an entry?. 01-15-2019 10:07 AM
- Posted Re: Why is the /entries endpoint empty after successfully POSTing an entry? on Canvas Developers Group. 01-15-2019 08:50 AM
- Posted Why is the /entries endpoint empty after successfully POSTing an entry? on Canvas Developers Group. 01-15-2019 08:01 AM
- Tagged Why is the /entries endpoint empty after successfully POSTing an entry? on Canvas Developers Group. 01-15-2019 08:01 AM
- Tagged Why is the /entries endpoint empty after successfully POSTing an entry? on Canvas Developers Group. 01-15-2019 08:01 AM
My Posts
Post Details | Date Published | Views | Likes |
---|---|---|---|
Why is the /entries endpoint empty after successfully POSTing an entry? **********SOLVED: This has been solved as the subdomain had to be my institution and not "canvas".************ Why does the GET /entries endpoint return an empty array even after I successf... |
01-15-2019 |
491 |
0 |
02-20-2020
03:47 AM
2 Likes
Wonderful thank you oxana! If you need anyone to test I'd love to help
... View more
02-10-2020
10:13 AM
1 Like
Are there any plans to scope resources access by user authentication? For example, in my community college system with access to the Data portal I get all 23 college's data. I would rather only get access to the scoped data I associate with as a faculty similar to several of the API calls.
... View more
01-15-2019
08:50 AM
1 Like
This has been solved as the subdomain had to be my institution and not "canvas".
... View more
01-15-2019
08:01 AM
**********SOLVED: This has been solved as the subdomain had to be my institution and not "canvas".************ Why does the GET /entries endpoint return an empty array even after I successfully POST an entry? GET https://canvas.instructure.com/api/v1/courses/:course_id/discussion_topics/:topic_id/view This returns all the entries just fine. GET https://canvas.instructure.com/api/v1/courses/:course_id/discussion_topics/:topic_id/entries This returns [] . Here's the 201 response body I received on the successful POST an entry: { "id": 130960000000035494, "user_id": ########, "parent_id": null, "created_at": "2019-01-15T15:41:23Z", "updated_at": "2019-01-15T15:41:23Z", "rating_count": null, "rating_sum": null, "user_name": "Ian Taylor", "message": "Ian's testing the API integration!", "user": { "id": ########, "display_name": "Ian Taylor", "avatar_image_url": #####, "html_url": ##### }, "read_state": "read", "forced_read_state": false } I (wrongly I guess?) assumed that I could then send this request to get the replies on that created entry: GET https://canvas.instructure.com/api/v1/courses/:course_id/discussion_topics/:topic_id/entries/130960000000035494/replies But I get a 404??? { "errors": [ { "message": "The specified resource does not exist." } ], "error_report_id": 130960000000327336 }
... View more