action semantria_queue_collection { label: "Queue collection for analysis" description: "This method queues collection of documents onto the server for analysis. Queued collection of documents analyzes in common context as entire thing. If unique configuration ID provided, Semantria uses settings of that configuration during analysis, in opposite the primary configuration uses. Collection IDs are unique in scope of configuration. If the same ID appears twice, Semantria overrides existing collection with the new Data" provider: semantria method: POST path: "/collection.{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 } }