Skip to main content
GET
/
v1
/
documents
/
{document_id}
/
full
Get Document Configuration Full Data
curl --request GET \
  --url https://api.flashdocs.ai/v1/documents/{document_id}/full \
  --header 'Authorization: Bearer <token>'
{
  "organization_id": "<string>",
  "type": "template",
  "name": "<string>",
  "description": "<string>",
  "id": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "created_by": "",
  "status": "in_progress",
  "google_document_id": "<string>",
  "knowledge_base_item_ids": [],
  "format": "google",
  "slides": [],
  "questions": [],
  "knowledge_base_items": []
}

Documentation Index

Fetch the complete documentation index at: https://docs.flashdocs.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

document_id
string
required

Query Parameters

include_slides
boolean
default:false
include_questions
boolean
default:false
include_knowledge_base
boolean
default:false
include_embeddings
boolean
default:false

Response

Successful Response

organization_id
string
required

ID of the organization this document belongs to

type
enum<string>
required

Type of the document (template or library)

Available options:
template,
library
name
string
required

Name of the document

description
string
required

Detailed description of the document

id
string

Unique identifier

created_at
string

Creation timestamp

updated_at
string

Last update timestamp

created_by
string
default:""

Email of user (non FlashDocs) who created the document

status
enum<string>
default:in_progress

Current status of the document

Available options:
deployed,
in_progress
google_document_id
string | null

ID of the corresponding Google Slides document

knowledge_base_item_ids
string[]

item_id for each knowledge base item associated with document.

format
enum<string>
default:google

Format of the document google vs microsoft

Available options:
google,
microsoft
slides
Slide · object[]
questions
Question · object[]
knowledge_base_items
KnowledgeBaseItem · object[]