Skip to content
GetmeDocs
Sign inCreate account

Getting started

  • Getme developer documentation

API Reference

  • Introduction
  • Authentication
  • Errors
  • Idempotent requests
  • Metadata
  • Pagination
  • Request IDs
  • Versioning
  • Webhooks
  • Event Catalog
  • SDKs and CLI

Core Resources

  • Auth
  • Events

Site Resources

  • Forms
  • Sites

Commerce Resources

  • Brands
  • Categories
  • Products
  • Services

Crm Resources

  • Customers

Other Resources

  • Media

Dev Tools

  • CLIBeta
  • Website source with the CLIBeta
  • Webhooks with the CLIBeta
  • SDKsBeta
  • Node SDKBeta
  • Python SDKBeta

Guides

  • Guides
  • Quickstart
  • Website source workflow
  • Webhook handler

Changelog

  • Changelog
  • June 10, 2026 - Developer platform docs beta
  • July 15, 2026 - Install token lifecycle safety
  • July 15, 2026 - Source-first site development
  • July 15, 2026 - Site source navigation warnings
Loading documentation...
HomeAPI referenceorder.refunded

order.refunded

An order was refunded.

stablev1ordersscope: orders:read

Payload

Webhook deliveries use the common event envelope. The event-specific object is available at data.object.

events/public/payloads/order.refunded.v1.schema.jsonevents/public/examples/order.refunded.v1.json

data.object fields

FieldTypeRequiredDescription
idstring | nulloptional
objectstring | nulloptional
metadataobject | nulloptional
settlement_modesarrayoptional
refund_methodsarrayoptional
payment_methodsarrayoptional
invoice_refund_public_idsarrayoptional
provider_refund_idsarrayoptional
accounting_evidence_statusesarrayoptional
out_of_bandbooleanoptional

dynamic data.object fields

FieldTypeRequiredDescription
(_id|^id)$string | nulloptional
.*_at$string | nulloptionalformat: date-time

Additional public-safe fields may be present. Internal identifiers and secrets are not part of the public payload contract.

Example

Event body
{
  "api_version": "2026-06-09",
  "created": "2026-06-09T12:00:00Z",
  "data": {
    "object": {
      "accounting_evidence_statuses": [
        "posted"
      ],
      "event": "order.refunded",
      "id": "ord_example",
      "invoice_refund_public_ids": [
        "invr_example"
      ],
      "metadata": {
        "example": true
      },
      "object": "order",
      "out_of_band": true,
      "payment_methods": [
        "wire_transfer"
      ],
      "provider_refund_ids": [],
      "refund_methods": [
        "manual"
      ],
      "settlement_modes": [
        "out_of_band"
      ]
    }
  },
  "environment": "test",
  "id": "wevt_Abcdef1234567890Ghijk",
  "livemode": false,
  "object": "event",
  "type": "order.refunded"
}
data.object
{
  "accounting_evidence_statuses": [
    "posted"
  ],
  "event": "order.refunded",
  "id": "ord_example",
  "invoice_refund_public_ids": [
    "invr_example"
  ],
  "metadata": {
    "example": true
  },
  "object": "order",
  "out_of_band": true,
  "payment_methods": [
    "wire_transfer"
  ],
  "provider_refund_ids": [],
  "refund_methods": [
    "manual"
  ],
  "settlement_modes": [
    "out_of_band"
  ]
}

On this page

  • Payload
  • Example