{ "openapi": "3.0.1", "info": { "title": "Donation", "description": "" }, "paths": { "/v1/donations/{id}": { "get": { "description": "", "operationId": "Get_Donation", "parameters": [ { "name": "id", "in": "path", "required": true, "allowEmptyValue": false, "schema": { "type": "integer", "format": "int32" } }, { "name": "api_key", "in": "query", "required": false, "allowEmptyValue": false, "schema": { "type": "string" } } ], "responses": { "2XX": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "donation": { "type": "object", "properties": { "newsletter": { "type": "boolean" }, "transaction_costs": { "type": "string" }, "target_url": { "type": "string" }, "created_at": { "type": "string", "format": "date-time" }, "device_type": { "type": "string" }, "team_id": { "type": "integer", "format": "int64" }, "receivable_amount": { "type": "string" }, "locale": { "type": "string" }, "contact_details_type": { "type": "string" }, "account_bic": { "type": "string" }, "start_donation": { "type": "boolean" }, "account_iban": { "type": "string" }, "updated_at": { "type": "string", "format": "date-time" }, "action_id": { "type": "integer", "format": "int64" }, "payment_description": { "type": "string" }, "account_name": { "type": "string" }, "payment_status_at": { "type": "string", "format": "date-time" }, "currency": { "type": "string" }, "id": { "type": "integer", "format": "int64" }, "first_name": { "type": "string" }, "email": { "type": "string" }, "payment_method": { "type": "string" }, "invoicenumber": { "type": "string" }, "transaction_id": { "type": "string" }, "amount": { "type": "string" }, "payment_status": { "type": "string" }, "last_name": { "type": "string" }, "registration_fee": { "type": "boolean" }, "total_amount": { "type": "string" }, "site_id": { "type": "integer", "format": "int64" }, "anonymous": { "type": "boolean" }, "frequency_type": { "type": "string" }, "countable": { "type": "boolean" } } } } } } } } } } } } }