# search_mentors_documents_retrieve Search and filter documents associated with a specific mentor Endpoint: GET /api/search/mentors/{mentor_unique_id}/documents/ Version: 3.59.0-ai-plus ## Query parameters: - `access` (string) Filter by access level (e.g., 'public', 'private') - `document_type` (string) Filter by document type (e.g., 'pdf', 'text') - `limit` (integer) Number of results per page - `offset` (integer) Starting position for pagination - `order_by` (string) Field to sort results by ('date_created', 'last_modified', 'document_name') - `order_direction` (string) Sort direction ('asc' or 'desc') - `platform_key` (string) Filter by platform key - `query` (string) Search term to filter documents by name or content - `training_status` (string) Filter by training status (e.g., 'trained', 'pending') ## Path parameters: - `mentor_unique_id` (string, required) ## Response 200 fields (application/json): - `results` (array, required) List of documents matching the search criteria - `results.id` (integer, required) Document ID - `results.document_name` (string, required) Name of the document - `results.document_type` (string, required) Type of document (e.g., 'pdf', 'text') - `results.access` (string, required) Access level of the document - `results.training_status` (string, required) Training status of the document - `results.date_created` (string, required) Date when the document was created - `results.last_modified` (string, required) Date when the document was last modified - `results.url` (string, required) URL to access the document - `results.metadata` (any, required) Additional metadata for the document - `count` (integer, required) Total number of documents matching the search criteria - `next` (string,null, required) URL for the next page of results - `previous` (string,null, required) URL for the previous page of results - `current_page` (integer, required) Current page number - `total_pages` (integer, required) Total number of pages - `facets` (object, required) Facet information for filtering