> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kawan.digital/llms.txt
> Use this file to discover all available pages before exploring further.

# Orderrefunded

> Fired when the order is refunded.



## OpenAPI

````yaml /openapi.yaml webhook orderRefunded
openapi: 3.1.0
info:
  title: Kawan Digital Public API
  version: 1.0.0
  summary: Store-scoped Order API
  description: >
    External systems can create and read **store orders** using API keys, and

    receive lifecycle events via signed webhooks.


    - **Access:** Growth and Scale stores only

    - **Auth:** `Authorization: Bearer {API_KEY}`

    - **Manage keys / webhooks:** [Dashboard → Developer
    API](https://kawan.digital/dashboard/settings/developers)

    - **Tutorial:** [Integrasi API](/integrasi)

    - **Webhooks:** [Dokumentasi webhook](/webhooks)

    - **Docs hub:** [Ringkasan](/)


    All JSON responses use `{ "success": true, "data": … }` or

    `{ "success": false, "error": { "code", "message" } }`.


    Amounts are IDR integers. Keys are scoped to **one store**.
  contact:
    name: Kawan Digital
    email: halo@kawan.digital
    url: https://kawan.digital/kontak
servers:
  - url: https://api.kawan.digital/v1
    description: Production
  - url: http://api.lvh.me:3000/v1
    description: Local (requires NEXT_PUBLIC_ROOT_DOMAIN=lvh.me)
security:
  - bearerAuth: []
tags:
  - name: Catalog
    description: Published products and bundles for the authenticated store.
  - name: Payments
    description: Checkout methods available for the store.
  - name: Orders
    description: Create and read store orders.
  - name: Webhooks
    description: |
      Signed HTTPS callbacks for order lifecycle events.
      See [Webhook documentation](/webhooks).
paths: {}
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key from Dashboard → Developer API. Shown once when created.

````