Skip to main content

See what’s waiting on you

List the requests addressed to you with GET /payment-requests/incoming.
Each item’s id (prq_*) is what you fulfill or decline below. A status of OPEN means it’s still waiting on you.

Fulfill it

POST /payment-requests/{paymentRequestId}/fulfill pays the request and moves the money. The amount comes from the request itself. You only choose where it is paid from, so set paymentSource to a wallet you own.
Fulfilling returns the resulting payment (pay_*), which starts in PROCESSING. Track it to confirm it settles.
You can also fulfill from a linked bank account instead of a wallet.

Decline it

POST /payment-requests/{paymentRequestId}/decline turns the request down. No money moves, the requester is notified, and the request’s status becomes DECLINED. Declining is final and cannot be undone.