Donation
Payload Parameters
Field | Type | Required | Description | Format Allowed |
---|---|---|---|---|
transactionId | String | ✔ | Donation's ID. | Any string value |
kindlyUserId | String | ✔ | Volunteer's ID. | Any string value |
volunteerFirstName | String | ✔ | Volunteer's First Name. | Any string value |
volunteerLastName | String | ✔ | Volunteer's Last Name. | Any string value |
donorMatch | Integer | ✔ | The amount donated by the Volunteer. | Positive integer, greater than 0 |
String | ✔ | Volunteer's Email Address. | Any string value | |
zipCode | String | ✔ | Volunteer's Zip Code. | Any string value |
phoneNumber | String | ✔ | Volunteer's Phone Number. | Any string value |
kindlyShiftId | String | ✔ | Shift's ID. | Any string value |
location | String | ✔ | Event's Location. | Any string value |
kindlyDonorId | String | ✔ | Donor's ID. | Any string value |
donorFirstName | String | ✔ | Donor's First Name. | Any string value |
donorLastName | String | ✔ | Donor's Last Name. | Any string value |
donation | Integer | ✔ | The amount donated by the Donor. | Positive integer, greater than 0 |
createdDate | DateTime | ✔ | The date when the Volunteer donated. | Date Time Offset string 2023-08-18T18:00:00+00:00 |
donationTriggeredDate | DateTime | ✔ | The date when the Donation became available to the Volunteer. | Date Time Offset string 2023-08-18T18:00:00+00:00 |
elapsedTime | String | ✔ | The time gap between the availability of the Donation and the Volunteer's donation. | String formatted as HHh:MMm 40h:05m |
Example Object Payload
{
"transactionId": "abcd123456",
"kindlyUserId": "10473963d373401fa1430096bfb38da7",
"volunteerFirstName": "John",
"volunteerLastName": "Doe",
"donorMatch": 88,
"email": "johndoe@gmail.com",
"zipCode": "99501",
"phoneNumber": "1585301498",
"kindlyShiftId": "e0b4a43800a24116ad269608ec0178d7",
"location": "The ABCD university",
"kindlyDonorId": "10473963d373401fa1430096bfb38da7",
"donorFirstName": "Bruce",
"donorLastName": "Lee",
"donation": 20,
"createdDate": "2023-08-18T18:00:00+00:00",
"donationTriggeredDate": "2023-08-20T10:00:00+00:00",
"elapsedTime": "40h:00m"
}