canvas-lms/doc/api
James Williams 9725c540ec fix api doc generation for rails 3
Change-Id: I15b7323e36eeee5b8104bf0c5eae7d37d87c5db1
Reviewed-on: https://gerrit.instructure.com/27031
Tested-by: Jenkins <jenkins@instructure.com>
Reviewed-by: Cody Cutrer <cody@instructure.com>
Product-Review: James Williams  <jamesw@instructure.com>
QA-Review: James Williams  <jamesw@instructure.com>
2013-12-11 19:58:50 +00:00
..
appendix/html integrate yard-appendix plugin with canvas YARD cfg 2013-02-08 11:50:37 -07:00
docstring/html rename doc/templates/rest to doc/api 2011-12-30 09:00:27 -07:00
fulldoc/html fix api doc generation for rails 3 2013-12-11 19:58:50 +00:00
layout/html define canvas-style compound API documents 2013-07-17 02:48:45 +00:00
method_details/html fix api doc generation for rails 3 2013-12-11 19:58:50 +00:00
tags integrate yard-appendix plugin with canvas YARD cfg 2013-02-08 11:50:37 -07:00
topic/html add @model description for User datatype in user API 2013-09-06 21:51:29 +00:00
README.md add note in api documentation about 64 bit ids 2013-08-01 19:56:37 +00:00
assignment_tools.md fixes improperly formatted external tool documentation 2013-10-31 20:43:09 +00:00
compound_documents.md define canvas-style compound API documents 2013-07-17 02:48:45 +00:00
editor_button_tools.md fixes improperly formatted external tool documentation 2013-10-31 20:43:09 +00:00
endpoint_attributes.md add data-api-endpoint for quiz / quiz list links 2013-06-04 20:34:24 +00:00
file_uploads.md document the time the signature is good for 2013-10-29 20:21:04 +00:00
homework_submission_tools.md fixes improperly formatted external tool documentation 2013-10-31 20:43:09 +00:00
link_selection_tools.md fixes improperly formatted external tool documentation 2013-10-31 20:43:09 +00:00
masquerading.md document as_user_id 2012-12-04 13:28:10 -07:00
navigation_tools.md extension tool launches default to settings from main tool 2012-06-26 12:10:36 -06:00
oauth.md allow oauth clients to provide a purpose to the oauth flow 2013-11-16 20:26:36 +00:00
object_ids.md update API documentation on usage of SIS IDs 2013-09-20 16:56:11 +00:00
pagination.md change api pagination to include the current page link 2013-08-16 19:13:25 +00:00
sis_csv.md clean up course account associations 2013-02-08 16:33:25 -07:00
tools_intro.md rename doc/templates/rest to doc/api 2011-12-30 09:00:27 -07:00
tools_xml.md fixes improperly formatted external tool documentation 2013-10-31 20:43:09 +00:00

README.md

Welcome to the Canvas LMS API Documentation

Canvas LMS includes a REST API for accessing and modifying data externally from the main application, in your own programs and scripts. This documentation describes the resources that make up the API.

To get started, you'll want to review the general basics, including the information below and the page on Authentication using OAuth2.

Schema

All API access is over HTTPS, against your normal Canvas domain.

All API responses are in JSON format.

All integer ids in Canvas are 64 bit integers.

For POST and PUT requests, parameters are sent using standard HTML form encoding (the application/x-www-form-urlencoded content type).

POST and PUT requests may also optionally be sent in JSON format format. The content-type of the request must be set to application/json in this case. There is currently no way to upload a file as part of a JSON POST, the multipart form type must be used.

As an example, this HTML form request:

name=test+name&file_ids[]=1&file_ids[]=2&sub[name]=foo&sub[message]=bar

would translate into this JSON request:

{ "name": "test name", "file_ids": [1,2], "sub": { "name": "foo", "message": "bar" } }

With either encoding, all timestamps are sent and returned in ISO 8601 format (UTC time zone):

YYYY-MM-DDTHH:MM:SSZ

Authentication

API authentication is done with OAuth2. If possible, using the HTTP Authorization header is recommended. Sending the access token in the query string or POST parameters is also supported.

OAuth2 Token sent in header:

curl -H "Authorization: Bearer <ACCESS-TOKEN>" https://canvas.instructure.com/api/v1/courses

OAuth2 Token sent in query string:

curl https://canvas.instructure.com/api/v1/courses?access_token=<ACCESS-TOKEN>

Read more about OAuth2 and how to get access tokens.

API Terms of Service

Please carefully review The Canvas Cloud API Terms of Service before using the API.

SSL

Note that if you make an API call using HTTP instead of HTTPS, you will be redirected to HTTPS. However, at that point, the credentials have already been sent in clear over the internet. Please make sure that you are using HTTPS.

About this Documentation

This documentation is generated directly from the Canvas LMS code itself. You can generate this documentation yourself if you've set up a local Canvas environment following the instructions on Github, run the following command from your Canvas directory:

bundle exec rake doc:api