action contract_p_post_document_custom_output_resource { label: "Generate custom output for documents" description: "Using the provided filter on documents, will generate a custom output.\n\n**Note:** only excel output is supported at the moment.\n\n**Permission required:** review" provider: contract_p method: POST path: "/documents/custom_output" encoding: json input: { type: "object" properties: { custom: { type: "object" properties: {} } excel: { type: "object" required: ["enable_key_value"] properties: { add_automation_blockers: { type: "boolean" } add_confidence: { type: "boolean" } add_text: { type: "boolean" } enable_key_value: { type: "boolean" } multiple_value_separator: { type: "string" } } } filter: { type: "object" required: ["type"] properties: { end_date: { type: "string" format: "date-time" } list: { type: "array" items: { type: "string" } } start_date: { type: "string" format: "date-time" } type: { type: "string" enum: ["project", "inbox", "document"] } } } } } output: { type: "object" additionalProperties: true } }