# ai_media_orgs_users_video_script_generation_document_create Endpoint to generate video scripts from a document file. The document file can be one of docx, doc, pptx, ppt, txt and pdf. The request should be a multipart form with your document file in the file field. Initial Response: {"script": None, "status": "started_generation", "generation_id": "your-generation-id."} This signals the generation has started. You can use the generation id to query video script generation status from this endpoint, using a JSON like below: {"generation_id": "your-generation-id"} Example response: {"script": "hello this is a video script.", "status": "finished", "generation_id": "your-generation-id"} Endpoint: POST /api/ai-media/orgs/{org}/users/{user_id}/video-script-generation/document/ Version: 4.84.1-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Response 200 fields