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 referenceinvoice.payment_failed

invoice.payment_failed

An invoice payment attempt failed.

stablev1billingscope: invoices:read

Payload

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

events/public/payloads/invoice.payment_failed.v1.schema.jsonevents/public/examples/invoice.payment_failed.v1.json

data.object fields

FieldTypeRequiredDescription
idstring | nulloptional
objectstring | nulloptional
metadataobject | nulloptional

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": {
      "event": "invoice.payment_failed",
      "id": "inv_example",
      "metadata": {
        "example": true
      },
      "object": "invoice"
    }
  },
  "environment": "test",
  "id": "wevt_Abcdef1234567890Ghijk",
  "livemode": false,
  "object": "event",
  "type": "invoice.payment_failed"
}
data.object
{
  "event": "invoice.payment_failed",
  "id": "inv_example",
  "metadata": {
    "example": true
  },
  "object": "invoice"
}

On this page

  • Payload
  • Example