# credentials_orgs_users_course_credentials_list Endpoint to retrieve the credentials of a given tenant grouped by course. This endpoint provides access to credential data grouped by course for a specific organization/tenant, with support for pagination and filtering. Path Parameters: org (str): The organization/tenant identifier Query Parameters: limit (int, optional): Number of results per page (default: 10) offset (int, optional): Starting position for pagination search (str, optional): Search term e.g course_id Returns: A paginated response using the CourseCredentialSerializer format. Error Responses: 401 Unauthorized: If the user is not authenticated 403 Forbidden: If the user does not have permission to access this data 404 Not Found: If the organization doesn't exist 500 Internal Server Error: If an unexpected error occurs Endpoint: GET /api/credentials/orgs/{org}/users/{user_id}/course-credentials/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Query parameters: - `page` (integer) A page number within the paginated result set. - `page_size` (integer) Number of results to return per page.