v1
latestOpenAPI 3.1.02026-07-2665153355.3 KBOrders
<Note> This is a callback API. Appcharge calls this endpoint on your server when specific events occur. </Note>
Notifies your system to grant an award to a customer.
Appcharge calls this endpoint after a customer payment is finalized or when a free offer is collected.
When your server responds with a valid publisherPurchaseId, Appcharge redirects the customer to the success page confirming their purchase.
<Warning>Your server must return a valid publisherPurchaseId value to confirm the award has been sucessfully granted. If the property is missing or invalid, the award is marked as unsuccessful, and an alert is triggered. </Warning>
post/{YOUR_GRANT_AWARD_ENDPOINT}
Headers
x-publisher-tokenstring
Publisher token.
signaturestring
Signature.
Request body
Example request
{
"orderId": "68e25eebdcb1278",
"purchaseId": "pr_750b85591e1643685718e5443xyz789",
"appChargePaymentId": "68e25eebd76543210",
"purchaseDateAndTimeUtc": "2024-07-21T14:17:27.329Z",
"playerId": "8533676467",
"bundleName": "Starter Pack",
"bundleId": "684044555ed01178ed2c0b3b",
"sku": "starterpack",
"products": [
{
"amount": 1000,
"sku": "prod22224448763533",
"name": "Gold Coins"
}
],
"priceInDollar": 999,
"priceInCents": 999,
"subTotal": 850,
"tax": 149,
"taxRate": 17.5,
"taxInDollar": 149,
"currency": "USD",
"action": "purchase",
"actionStatus": "completed",
"originalPriceInDollar": 1499,
"paymentPriceInDollar": 999,
"paymentMethod": "card",
"countryCode2": "US",
"priceTotalInDollar": 1148,
"playerEmail": "john.doe@example.com",
"receiptId": "receipt_abc123",
"estimatedPublisherNetAmount": 850.5,
"estimatedAppchargeFee": 148.5,
"pricePointMetadata": 999,
"createdByIp": "192.168.1.1",
"zipCode": "10001",
"awardFlow": "auto",
"promoCodeName": "SUMMER2024",
"discount": 100,
"storeMetadata": {
"productsSequenceIndex": 1,
"utms": {
"utmSource": "Facebook",
"utmMedium": "email",
"utmCampaign": "spring_sale"
}
}
}Response
Successfully granted award to customer.
Example response
{
"publisherPurchaseId": "222673459829966773354378"
}