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 referenceexpense.submitted

expense.submitted

An expense was submitted for approval.

stablev1expensesscope: expenses:read

Payload

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

events/public/payloads/expense.submitted.v1.schema.jsonevents/public/examples/expense.submitted.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": "expense.submitted",
      "id": "expn_example",
      "metadata": {
        "example": true
      },
      "object": "expense"
    }
  },
  "environment": "test",
  "id": "wevt_Abcdef1234567890Ghijk",
  "livemode": false,
  "object": "event",
  "type": "expense.submitted"
}
data.object
{
  "event": "expense.submitted",
  "id": "expn_example",
  "metadata": {
    "example": true
  },
  "object": "expense"
}

On this page

  • Payload
  • Example