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

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

200
application/json

Successful Response

The response is of type object.