Skip to content
StippaStippa
FeaturesPricingDemoFAQContact
Log inGet started

Getting started

  • Introduction
  • Authentication
  • Permissions

Core concepts

  • Errors
  • Pagination
  • Idempotency
  • Rate limits

Resources

  • Appointments
  • Customers
  • Services
  • Staff
  • Availability
  • Products
  • Payments
  • Webhooks

Recipes

  • Recipe: book from your own website
  • Recipe: sync the diary into a spreadsheet or BI tool
  • Recipe: a Slack message on every new booking

Reference

  • Changelog
  • OpenAPI 3.1 document

Payments

Money taken for appointments, however it was taken, and why nothing here is writable.

Last updated 1 August 2026

A payment is money taken for an appointment. This resource is read-only, and unlike services it is read-only for a reason that is about risk rather than about ownership: no API key can move money, at any plan, with any scope, and no scope will be added that changes it.

MethodEndpointScopePlan
GET/api/v1/payments

List payments

Query: limitcursorappointmentIdstatusfromto

payments:readGroei
GET/api/v1/payments/{id}

Retrieve a payment

payments:readGroei

What you get back

{
  "id": "10b7ee1f-eecd-4527-a105-3d7c33fdbfd7",
  "appointmentId": "8db4ab12-82e8-4205-8aea-cfd81dee55d5",
  "amountCents": 1750,
  "currency": "EUR",
  "status": "succeeded",
  "source": "manual",
  "refundedAmountCents": 0,
  "createdAt": "2026-08-11T11:04:00.000Z",
  "updatedAt": "2026-08-11T11:04:00.000Z"
}

There is no customer on a payment, and no card detail of any kind: no last four digits, no brand, no expiry, no cardholder name. Card data never reaches our servers, which is what keeps the business out of PCI scope, so there is nothing to expose here even if it were wise to. Resolve the customer through appointmentId.

source tells you who took the money

sourceMeans
stripePaid online through Stripe
molliePaid online through Mollie
manualThe business recorded a payment it took some other way

manual is the row an integrator most often mishandles, and it is the majority of rows for a lot of salons: cash at the counter, a card machine that is not ours, a bank transfer. It is a real payment that we did not process, so there is no provider reference to reconcile it against and no webhook from a payment provider behind it.

A manual payment with status: "succeeded" is as settled as a Stripe one. If you are reconciling takings, count it. If you are matching against a Stripe report, exclude it, or you will spend an afternoon looking for transactions that were never in Stripe.

Statuses

statusMeans
pendingStarted and not settled. Online only, and it may never settle
succeededSettled. The money is there
failedIt did not go through
refund_pendingA refund has been issued and the provider has not confirmed it
partially_refundedSome of it came back
refundedAll of it came back

Six values, and the list is documented as extensible: a seventh is an additive change and ships without notice, so route anything you do not recognise to a default branch rather than throwing. See the compatibility rules.

A pending row is not a promise. A customer who opened a Mollie checkout and closed the tab leaves one behind forever, so a pending payment older than a day or so is almost certainly abandoned rather than in flight. Nothing sweeps them, because the row is the record that somebody tried.

Read the amount, not the status, for refunds

Two of those six statuses are about refunds and neither tells you how much. refundedAmountCents is the number:

  • refundedAmountCents: 0: nothing was returned
  • less than amountCents, with status partially_refunded: the common case when a business keeps a deposit against a late cancellation
  • equal to amountCents, with status refunded: fully refunded

Compute what the business actually kept as amountCents minus refundedAmountCents, whatever the status says. That expression is correct for all six values, including the two you have not handled yet, and it is the one with money in it.

refund_pending is the state worth thinking about once rather than never: the business has issued the refund and the provider has not confirmed. The money is leaving and has not left. Reconciliation that treats it as settled is early by a day; reconciliation that treats it as succeeded revenue is wrong.

Filtering

from and to filter on creation time, which is when the payment was taken. That is the opposite of the appointments list, where they filter on start time, and the difference is deliberate rather than an inconsistency: an appointment is an event in the future and a payment is an event that already happened. A monthly reconciliation wants payments taken in August, not payments attached to appointments happening in August.

appointmentId and status are exact matches. There is no updatedSince here, so a payment that settles later is found by re-reading a window rather than by an incremental sync. The payment.succeeded webhook is the better answer to that problem: see webhooks.

What is not here

Charging. There is no endpoint that takes money. A booking that needs prepayment returns a checkout URL or a client secret from POST /api/v1/appointments and the customer settles it themselves; see the appointments page.

Refunding. Not on this API, deliberately, and it is on the deny list at permissions. A refund is irreversible and moves real money out of a business's account, and a leaked key that could issue them is a leaked key that can empty a salon's balance. It stays behind a logged-in owner or admin in the dashboard.

Payouts and provider balances. Between the business and its payment provider, and nothing to do with this surface.

A business with no payment provider connected gets 403 PAYMENTS_UNAVAILABLE rather than an empty list, so you can tell "this salon does not take online payments" apart from "this salon has not sold anything yet".

On this page

  • What you get back
  • source tells you who took the money
  • Statuses
  • Read the amount, not the status, for refunds
  • Filtering
  • What is not here
StippaStippa

Appointment scheduling, without the hassle.

For whom

  • For salons
  • Beauty salons
  • Physiotherapists
  • Coaches
  • Personal trainers

Features

  • Booking widget
  • Online payments
  • Reminders
  • No-show prevention
  • Online calendar
  • Client management

Product

  • Features
  • Pricing
  • FAQ
  • Contact
  • System status

Legal

  • Privacy policy
  • Terms of service
  • Data processing agreement

© 2026 Stippa. All rights reserved.

De Rechter Software · Molenwater 20, 4511 BN Breskens · KvK 98466402 · btw NL005332100B80

······