action contribly_get_form_responses_id { label: "Get a single form response by id" provider: contribly method: GET path: "/form-responses/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { contribution: { type: "string" } date: { type: "string" format: "date-time" } form: { type: "string" } id: { type: "string" } responses: { type: "object" } user: { type: "string" } } } }