Create assignment API creating duplicates
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2018
04:27 AM
The create assignment API
POST /api/v1/courses/:course_id/assignments
seems to create two duplicate assignments (instead of one) every time I call it. Has anyone else experienced this or can anyone help with this?
Solved! Go to Solution.
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2018
09:57 AM
Thanks for the quick response! We have figured it out. It turns out we had implemented a retry system on any response that wasn't a 200. Creating an assignment actually returns a 201 so that triggered a retry in our system. We just amended it to accept any 2xx response as working.