Make a payment
🚧 Beta This is a Beta endpoint. Feedback from the community is welcome. We may make breaking changes to this endpoint.
Make a one-time payment against a lending account (e.g. a card paydown), funded either from an internal Synctera platform account or an external ACH-linked account. If effective_date is today or omitted, the payment executes immediately and the response reflects its final status (EXECUTED, FAILED, or SKIPPED). If effective_date is in the future, the payment is scheduled and executes on that date.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry.
"7d943c51-e4ff-4e57-9558-08cab6b963c7"
Body
Payment to make
Request to make a one-time payment against a lending account (e.g. a card paydown). Exactly one of person_id or business_id must be provided to identify the customer initiating the payment; exactly one of payment_configs.ach or payment_configs.internal_transfer must be provided to identify the funding source.
Amount to pay, in cents. Paid in full as requested, even if it exceeds the account's current balance -- an intentional overpayment is honored, not truncated to the balance.
x >= 15000
The lending account (card/account) to pay down
"7d943c51-e4ff-4e57-9558-08cab6b963c7"
Payment method-specific configurations
The business ID initiating this payment. Mutually exclusive with person_id -- exactly one must be provided.
"b2c3d4e5-f6a7-8901-bcde-f12345678901"
Optional description for the payment. Defaults to "Payment".
"Card paydown"
Date the payment should be made. Defaults to today. If today or in the past, the payment is executed immediately and the response reflects its final status; if in the future, the payment is scheduled and executes on that date.
"2024-01-25"
The person ID initiating this payment. Mutually exclusive with business_id -- exactly one must be provided.
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
The id of the tenant containing the resource.
"abcdef_ghijkl"
Response
Payment created (and, if effective immediately, executed)
A one-time payment made against a lending account.
Timestamp when the payment was created
"2024-01-15T10:30:00Z"
Description for the payment
"Payment"
Date the payment was (or will be) made
"2024-01-25"
Unique identifier for the payment
"2d0f7601-ecc6-48b4-b82f-5d64fa84628b"
Timestamp when the payment was last updated
"2024-01-15T10:30:00Z"
The lending account this payment was made against
"7d943c51-e4ff-4e57-9558-08cab6b963c7"
Payment method-specific configurations
Status of the autopay:
- PENDING: Autopay is scheduled and waiting to be executed
- EXECUTED: Autopay was successfully executed
- SKIPPED: Autopay was skipped (e.g., no balance due)
- FAILED: Autopay failed to execute
PENDING, EXECUTED, SKIPPED, FAILED History of execution attempts for an autopay
The amount in cents associated with this payment. For PENDING payments this is the originally requested amount (payments are not capped at the current balance -- an intentional overpayment is honored). For EXECUTED payments this mirrors executed_amount.
5000
The amount in cents actually paid, once executed.
5000
Identifiers for the payment created by an autopay execution. Only one field will be populated depending on the payment method used.

