action semantria_retrieve_processed_documents { label: "Retrieve documents analysis" description: "This method retrieves analysis results for processed documents from Semantria. FAILED documents will have FAILED status in response. Semantria responds with limited amount of results per API call. If configuration ID provided, Semantria responds with the document, which were queued using the same configuration ID, in opposite Primary." provider: semantria method: GET path: "/document/processed.{content_type}" encoding: json input: { type: "object" properties: { config_id: { type: "string" } content_type: { type: "string" } } required: ["content_type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }