Create Donation
Creates a donation for a user based on the selected social cause campaign
- Type: stringrequired
The signature for the API call
- Type: stringrequired
Used to authorize the request with access_token. It should be supplied as
Bearer ACCESS_TOKEN_GOES_HERE. - Type: stringrequired
Advertises which content types the client is able to understand
- Type: stringrequired
Set this header to application/json.
- Type: stringrequired
Used to identify the software, device, and application initiating the request, providing information about the client to the server. For details, see User Agent.
- Type: stringrequired
OAuth client ID provided by the business
- Type: stringrequired
Type of donation that a user wants to make. Currently, Punchh supports donation of the following objects:
- currency: For businesses that supports banked currency
- reward: Available rewards of a user
- redeemable: Loyalty redeemables for a business that supports points unlock redeemables
- card: Redeemable cards for visit-based businesses
- Type: stringrequired
Provide the value that corresponds to the donation type:
- currency: Dollar amount that will be donated
- reward: ID of the reward that will be donated
- redeemable: ID of the redeemable that will be donated
- card: Pass the string
card
- Type: integerrequired
Unique ID assigned to a social cause campaign. This ID is generated by Punchh when the social cause campaign is created in the Punchh platform.
- application/json
- application/json
- application/json
- application/json
- application/json
curl https://SERVER_NAME_GOES_HERE.punchh.com/api2/mobile/social_causes \
--request POST \
--header 'x-pch-digest: {{$$.env.signature}}' \
--header 'Authorization: Bearer ACCESS_TOKEN_GOES_HERE' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'User-Agent: AppName/AppVersion/BuildNumber (OS; Model; MANUFACTURER; MODEL; OS Version)' \
--data '{
"client": "CLIENT_GOES_HERE",
"social_cause_id": "1901",
"donation_type": "currency",
"item_to_donate": 2
}'
[
{
"0": "$2.00 donated to Social Cause Campaign One."
}
]