Download OpenAPI specification:Download
The Donation API provides features that specifically support fundraising
Returns comprehensive details about a donation agreement including payer information
| agreementId required | string Example: 2518f497-bfad-43a6-8914-fd0168a6c221 The unique identifier for the donation agreement |
{- "id": "2518f497-bfad-43a6-8914-fd0168a6c221",
- "recipientHandle": "NO:6666",
- "startedAt": "2026-01-31T17:26:50.8789251+00:00",
- "externalReference": "123abc",
- "schedule": {
- "interval": "MONTHLY",
- "withdrawalDay": 10
}, - "amount": {
- "value": 2300,
- "currency": "NOK"
}, - "payer": {
- "firstName": "Ada",
- "lastName": "Lovelace",
- "phoneNumber": "4712345678",
- "address": {
- "addressLine1": "Robert Levins gate 5",
- "addressLine2": "",
- "city": "Oslo",
- "country": "NO",
- "postalCode": "0154"
}, - "email": "user@example.com",
- "emailVerified": true
}
}Returns a list of payments marked as donations made to any sales unit belonging to the merchant of the sales unit identified in the token.
| from required | string <date-time> Timestamp where payments made after should be included in the report |
| to required | string <date-time> Timestamp where payments made after should not be included in the report |
| recipientHandles | string Example: recipientHandles=NO:1234 Optional filter of recipientHandles that should be included in the response, if omitted donation data for all recipientHandles of the merchant are returned. |
| includeGDPRSensitiveData | boolean Default: false When |
{- "from": "2019-08-24T14:15:22Z",
- "to": "2019-08-24T14:15:22Z",
- "payments": [
- {
- "externalReference": "spring-promotion-2025",
- "agreementId": "79458f91-82b5-4c38-a886-56df6a6b7980",
- "message": "string",
- "payer": {
- "name": "Ada Lovelace",
- "phoneNumber": "4712345678"
}, - "capturedAt": "2019-08-24T14:15:22Z",
- "pspReference": "11268125611",
- "transactionReference": "11268125611",
- "recipientHandle": "api:922061",
- "amount": "50001",
- "currency": "NOK"
}
]
}