Skip to main content
The Paymint group powers the Paymint Make.com app — send payment requests to payers, read/cancel them, and manage AutoPay (recurring billing).
New to Paymint? Start with the Getting started guide — sign up for 결제선생, pass the card-company review, and connect it to Magic Meal Kits.

Authentication

Send the MMK X-API-KEY plus your Paymint connection fields, which you set once on the connection page in the Magic Meal Kits app (see Authentication). Two modes:
  • MMK mode — send X-Paymint-MMK-Mode: true (optionally X-Paymint-Member-ID / X-Paymint-Merchant-ID to pick a specific license). Easiest; uses a license configured on your deployment.
  • Traditional mode — send X-Paymint-Host, X-Paymint-Api-Key, X-Paymint-Member-ID, X-Paymint-Merchant-ID, X-Paymint-Business-Number.
The protected endpoints require a Pro or Paymint-only license — a Basic deployment gets 402 (upgrade required). On top of that, payment-sending calls (request, resend, autopay/request) draw down your Paymint balance, which also returns 402 when the balance is insufficient.

Endpoints

EndpointAuthWhat it does
GET /paymint/licensesNoneList approved licenses (to pick a member/merchant)
POST /paymint/format-phone-numberNoneNormalize a phone number
POST /paymint/requestConnectionSend a payment request (uses balance)
POST /paymint/readConnectionRead a payment’s status
POST /paymint/cancelConnectionCancel a payment
POST /paymint/destroyConnectionPermanently remove a payment
POST /paymint/resendConnectionResend a payment request (uses balance)
POST /paymint/autopay/registerConnectionRegister a payer for AutoPay
POST /paymint/autopay/manageConnectionUpdate an AutoPay method
GET /paymint/autopay/methodsConnectionList a payer’s AutoPay methods
POST /paymint/autopay/requestConnectionCharge via AutoPay (uses balance)
DELETE /paymint/autopay/deleteConnectionDelete an AutoPay method

Notes

  • Public helpers. licenses and format-phone-number need no Paymint auth — handy for setup and input formatting.
  • Balance. Top up your Paymint balance to keep request / resend / autopay/request working.
  • Callback. Paymint posts payment status updates to a server-side callback endpoint; it’s inbound from Paymint, not something you call.
Use the interactive playground to try a request with your own deployment host, API key, and Paymint connection fields.