Skip to content

Returns a flattened, spreadsheet-shaped list of quiz attempts for a course — student, email, quiz, score, grade, attempt count and submission time.

Capped at 5000 rows and filterable with the same search and filter_by values as the paginated listing.

Endpoint

  • Method: GET

  • Path: /admin/courses/{course_id}/export/quiz-results

  • Edition: PRO

  • Controller: FluentCommunityPro\App\Modules\Quiz\Http\Controllers\QuizController@getExportableQuizResults

  • Route source: fluent-community-pro/app/Modules/Quiz/Http/quiz_api.php:15

  • Requires a course admin for this course, or a WordPress user with manage_options.

  • Requires FluentCommunity Pro with the Quiz module; the response includes member email addresses.

Live sample

The request and response below were recorded against a running FluentCommunity install and then anonymised — member names, emails, avatars and post content are fictional, and long collections are trimmed to a few entries.

GET Get Exportable Quiz Results

GET
/admin/courses/{course_id}/export/quiz-results

Returns a flattened, spreadsheet-shaped list of quiz attempts for a course — student, email, quiz, score, grade, attempt count and submission time.

Controller: FluentCommunityPro\App\Modules\Quiz\Http\Controllers\QuizController@getExportableQuizResults
Route source: fluent-community-pro/app/Modules/Quiz/Http/quiz_api.php:15

Authorizations

ApplicationPasswords

WordPress Application Passwords — use Basic auth with username:application_password.

Type
API Key (header: Authorization)

Responses

Successful response

application/json
JSON
{
  
"results": [
  
  
{
  
  
  
"Email": "string",
  
  
  
"Grade": "string",
  
  
  
"Quiz": "string",
  
  
  
"Score": "string",
  
  
  
"Student Name": "string",
  
  
  
"Submitted At": "string",
  
  
  
"Total Attempts": 0,
  
  
  
"Username": "string"
  
  
}
  
]
}

Playground

Authorization

Samples

Powered by VitePress OpenAPI

FluentCommunity developer documentation