doc/api/object_ids.md
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_idsis_course_idsis_group_idsis_group_category_idsis_integration_id (for users and courses)sis_login_idsis_section_idsis_term_idsis_user_idSome 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:
self to mean the current user.self to mean the root account for the current domain,
default to mean the Default account, and site_admin to mean the Site
Admin account.default to mean the default term, and current to 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, current will not be found.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 NoDecodePassengerAllowEncodedSlashes onAlso 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.