Get donor donation history
GET
/donor/me/donations
Paginated giving history for the authenticated donor with optional filters.
Authorizations
BearerAuth
Authentication is handled automatically via httpOnly session cookies after signing in at /cognito/signin or via Google SSO at /cognito/oauth/google. For Swagger UI testing, paste a JWT token from the /cognito/signin response.
Type
HTTP (bearer)
Parameters
Query Parameters
page
Type
integer
Minimum
1Default
1limit
Type
integer
Minimum
1Maximum
100Default
20year
Type
integer
status
Type
string
Valid values
"paid""refunded""failed""pending"fundraiserId
Type
string
Responses
Donor donations
application/json
JSON
{
"data": [
{
}
],
"pagination": {
"page": 0,
"limit": 0,
"total": 0,
"totalPages": 0
}
}