We have relocated to Instructure Developer Documentation Portal. 🎉 Please update your bookmarks. This page will automatically redirect after July 1, 2026.
Object IDs, SIS IDs, and special IDs
Throughout the API, objects are referenced by internal IDs. You can also
reference objects by SIS ID, by prepending the SIS ID with the name of
the SIS field, like sis_course_id:. For instance, to retrieve the
list of assignments for a course with SIS ID of A1234:
/api/v1/courses/sis_course_id:A1234/assignments
The following objects support SIS IDs in the API:
- sis_account_id
- sis_course_id
- sis_group_id
- sis_group_category_id
- sis_integration_id(for users and courses)
- sis_login_id
- sis_section_id
- sis_term_id
- sis_user_id
Some objects support LTI IDs:
- lti_context_id(for accounts, assignments, courses, groups, and users)
- lti_1_1_id(for users, an alias of- lti_context_id, which is sent in LTI 1.1 launches as- user_id)
- lti_1_3_id(for users, a separate value from- lti_context_id, sent in LTI 1.3 launches as- sub)
Additionally, some objects support special IDs:
- Users support selfto mean the current user.
- Accounts support selfto mean the root account for the current domain,defaultto mean the Default account, andsite_adminto mean the Site Admin account.
- Terms support defaultto mean the default term, andcurrentto mean the term that is currently active according to term dates. A term must have a start date or an end date to be considered the current term. If there is more than one term that's active,currentwill not be found.
Encoding and Escaping
SIS IDs should be encoded as UTF-8, and then escaped normally for inclusion in
a URI. For instance the SIS ID CS/101.11é is encoded and escaped as
CS%2F101%2E11%C3%A9.
Note that some web servers have difficulties with escaped characters, particularly forward slashes. They may require special configuration to properly pass encoded slashes to Rails.
For Apache and Passenger, the following settings should be set:
- AllowEncodedSlashes- NoDecode
- PassengerAllowEncodedSlashes- on
Also beware that if you use ProxyPass,
you should enable the nocanon option. Similarly,
RewriteRule
should use the NE,
or noescape flag. Other modules may also need additional configuration to
prevent double-escaping of %2f (/) as %252f.
Prior versions of this API documentation described using a hex encoding to circumvent these issues, since the proper Apache/Passenger configuration was not known at the time. This format is deprecated, and will no longer be described, but will continue to be handled by the server for backwards compatibility.