Outcomes
Search academic outcomes to find standards to attach to a resource. Returns 20 outcomes at a time.
Example:
curl -H "X-Session-ID: 0123456789" "https://lor.instructure.com/api/outcomes/query?query=Common&authority=UT&federal=true"
Session authentication. The session ID can be provided in any of the following ways: [Cookie: 'session'] [Header: 'x-session-id'] [Query parameter: 'session-id'] [Query parameter: first value of 'state'] [Body property: 'sessionId']
The text to search for in the outcomes
The comma separated authority codes for the outcomes being searched for. The authority code is the two letter state abbreviation, or "CC" for federal Common Core. Defaults to all authorities.
The offset the query results should start at. Used to paginate through the results. Defaults at 0.
0An array of the results of the query
Bad Request
GET /api/outcomes/query?query=text HTTP/1.1
Host: lor.instructure.com
x-session-id: YOUR_API_KEY
Accept: */*
{
"items": [
{
"guid": "text",
"number": "text",
"title": "text",
"description": "text",
"subjectDescription": "text"
}
],
"meta": {
"count": 1,
"offset": 1,
"limit": 1
}
}Last updated
Was this helpful?