Skip to main content
POST
/
Payment
/
Recurring
Create a recurring payment
curl --request POST \
  --url https://api.trysynch.com/Payment/Recurring \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 123,
  "startDate": "2023-12-25",
  "intervalValue": 123,
  "intervalUnit": {},
  "phoneNumber": "<string>",
  "registrationUserId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "companyReferenceId": "<string>"
}
'
{
  "paymentPlanId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

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>
startDate
string<date>
intervalValue
integer<int32>
intervalUnit
object
phoneNumber
string | null
registrationUserId
string<uuid> | null
companyId
string<uuid> | null
companyReferenceId
string | null

Response

OK

paymentPlanId
string<uuid>
Last modified on June 2, 2026