Jump to Content
Neon
GuidesRecipesAPI ReferenceChangelogDiscussions
v1.0.0

Log InNeon
Guides
Log In
v1.0.0GuidesRecipesAPI ReferenceChangelogDiscussions

Documentation

  • Getting Started with Neon
  • Storefront
    • Environments and API Keys
    • Managing Offers
    • Storefront Images
    • Offer Images
    • Text Localization
    • Offer Segmentation
    • Web Purchase Limits
  • Checkout
    • Setting Up Your Checkout Experience
    • Initiating a Checkout
    • Embedded Checkout
    • Accept Payments with Neon in iOS Games
  • Post-Purchase Management
    • Updating Your Game
    • Get Purchase Details
    • Refunds
    • Get all purchases
  • Testing and Launching Your Store
  • Webhooks and Callbacks
    • Webhook: purchase.completed
    • Webhook: refund.processed
    • Callback: account.getInventory
    • Callback: account.validate
    • Webhook: dispute.opened
    • Webhook: dispute.closed
  • Additional
    • Analytics
    • Player & Game Authentication
    • Authentication API
      • Auth API User Behavior
    • International Support
    • Pricing
    • Test Inputs
    • Payouts
    • Currencies
    • Promo Codes
    • Disputes
    • Migrating from Xsolla to Neon
  • Support
  • Subscriptions (beta)
Powered by 

Webhook: dispute.closed

Suggest Edits

The dispute.closed event is triggered when a dispute has been closed. It can be in status won or lost.

Example

{
  "id": "d20f0f08-694d-4798-9faf-fccd5b61ed39",
  "type": "dispute.closed",
  "version": 1,
  "isSandbox": true,
  "data": {
    "dispute": {
      "id": "d20f0f08-694d-4798-9faf-fccd5b61ed32",
      "date": "2024-11-20T20:53:03.371Z",
      "purchaseId": "1bfb9321-0013-4196-ac9c-a864ecce522f",
      "amount": 100,
      "comments": null,
      "currency": "USD",
      "isSandbox": true,
      "status": "won",
    },
  },
}

Updated 1 day ago


  • Table of Contents
    • Example