action semantria_receive_document_analytic_data { label: "Retrieve document analysis or its status in queue" description: "This method retrieves analysis results for the single document by its unique ID or the document’s status in queue if it did not analyzed yet. Semantria guarantees delivering of all documents back to the client even if they FAILED on Semantria side due to some reason." provider: semantria method: GET path: "/document/{document_id}.{content_type}" encoding: json input: { type: "object" properties: { config_id: { type: "string" } content_type: { type: "string" } document_id: { type: "string" } } required: ["content_type", "document_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }