Skip to main content
POST
/
paymint
/
request
Send a payment request
curl --request POST \
  --url https://{deployment}/api/v1/paymint/request \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-Paymint-MMK-Mode: <api-key>' \
  --data '
{
  "product_nm": "Coaching session",
  "message": "결제를 진행해 주세요.",
  "member_nm": "홍길동",
  "phone": "01012345678",
  "price": 50000,
  "expire_dt": "2026-07-15"
}
'
{}

Authorizations

X-API-KEY
string
header
required

Your deployment's API key (MMK_API_KEY).

X-Paymint-MMK-Mode
string
header
required

Set to true to use MMK mode (uses a license configured on your deployment). Set the Paymint connection fields on the connection page in the Magic Meal Kits app.

Body

application/json
product_nm
string
required

Bill reason / product name.

message
string
required

Guidance message shown to the payer.

member_nm
string
required

Payer (member) name.

phone
string
required

Payer phone number.

price
number
required

Bill amount (max 10 digits).

expire_dt
string
required

Bill expiry date (YYYY-MM-DD).

bill_id
string

Optional bill ID.

callbackURL
string

Optional callback URL (defaults to the server's callback).

Response

Payment request created

The response is of type object.