action change_get_api_v1_donations_show { label: "Retrieve a donation" description: "Retrieves the details of a donation you've previously made." provider: change method: GET path: "/api/v1/donations/show" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }