action weber_gesamtausgabe_get_documents_find_by_date { label: "Finds documents by date" description: "This endpoint returns a list of documents related to the given date – optionally filtered by document type. \n" provider: weber_gesamtausgabe method: GET path: "/documents/findByDate" encoding: json input: { type: "object" properties: { fromDate: { type: "string" } toDate: { type: "string" } } required: ["fromDate"] additionalProperties: false } output: { type: "object" additionalProperties: true } }