Skip to main content
POST
/
CardPayment
Register card payment
curl --request POST \
  --url https://api.trysynch.com/CardPayment \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 123,
  "mobileNumber": "<string>",
  "cardType": "<string>",
  "transactionStatus": "<string>",
  "merchantId": "<string>",
  "email": "<string>",
  "patientReferenceNumber": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://apidocs.synchpay.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Use /auth/token to obtain access token. Enter 'Bearer' [space] and then your token in the text input below. Example: 'Bearer eyJhbGci...'

Body

amount
integer<int32>
mobileNumber
string
cardType
string
transactionStatus
string
merchantId
string
email
string | null
patientReferenceNumber
string | null

Response

200

OK

Last modified on April 28, 2026