Update an Outcome API

Jump to solution
mlewis23
Community Champion

Anyone have any luck with the new Update Outcomes endpoint in the API (release notes 6-24-2017) that should allow for text edits to an assessed outcome?

Outcomes - Canvas LMS REST API Documentation 

I'm getting back a 200 status code, but no changes take place. I'm not sure if it is worth troubleshooting if nobody else has it working.

thanks.

0 Likes
1 Solution
mlewis23
Community Champion
Author

Heard back from Canvas L2 and it sounds like the outcome edit should be working.  Here is the Curl used by the L2 support:

curl -X PUT \
  https://[institution].instructure.com/api/v1/outcomes/56
  -H 'authorization: Bearer token' \
  -F 'display_name=Changed name'

View solution in original post