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