action formapi_list_combined_submissions { label: "Get a list of all combined submissions" provider: formapi method: GET path: "/combined_submissions" encoding: json input: { type: "object" properties: { page: { type: "integer" } per_page: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id", "state", "expired", "submission_ids", "source_pdfs"] properties: { actions: { type: "array" items: { type: "object" required: ["id", "integration_id", "state", "action_category", "action_type", "result_data"] properties: { action_category: { type: "string" enum: ["notification", "file_upload"] } action_type: { type: "string" enum: ["webhook", "slack_webhook", "email", "aws_s3_upload"] } id: { type: "string" } integration_id: { type: "string" } result_data: { type: "object" } state: { type: "string" enum: ["pending", "processed", "failed", "error"] } } } } download_url: { type: "string" } error_message: { type: "string" } expired: { type: "boolean" } expires_at: { type: "string" } expires_in: { type: "integer" } id: { type: "string" } metadata: { type: "object" } password: { type: "string" } pdf_hash: { type: "string" } source_pdfs: { type: "array" items: { type: "object" } } state: { type: "string" enum: ["pending", "processed", "error"] } submission_ids: { type: "array" items: { type: "string" } } } } } }