Quiz IP Filters
Welcome to Our New API Docs! This is the new home for all things API (previously at Canvas LMS REST API Documentation).
Quiz IP Filters API
API for accessing quiz IP filters
A QuizIPFilter object looks like:
{
// A unique name for the filter.
"name": "Current Filter",
// Name of the Account (or Quiz) the IP filter is defined in.
"account": "Some Quiz",
// An IP address (or range mask) this filter embodies.
"filter": "192.168.1.1/24"
}
Quizzes::QuizIpFiltersController#index
GET /api/v1/courses/:course_id/quizzes/:quiz_id/ip_filters
Scope: url:GET|/api/v1/courses/:course_id/quizzes/:quiz_id/ip_filters
Get a list of available IP filters for this Quiz.
200 OK response code is returned if the request was successful.
Example Response:
{
"quiz_ip_filters": [QuizIPFilter]
}
This documentation is generated directly from the Canvas LMS source code, available on Github.
Last updated
Was this helpful?