action contribly_get_form_responses { label: "List form responses" provider: contribly method: GET path: "/form-responses" encoding: json input: { type: "object" properties: { contribution: { type: "string" } form: { type: "string" } user: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { contribution: { type: "string" } date: { type: "string" format: "date-time" } form: { type: "string" } id: { type: "string" } responses: { type: "object" } user: { type: "string" } } } } }