v1

latestOpenAPI 3.0.02026-07-14866188.2 KB
Payments

Simulate Interac funding. Only works in staging or sandbox.

Simulates a complete Interac e-Transfer funding flow.

Using reference: Pass an issueID, t_id, or p_id as the reference field. The system auto-detects the type. If it resolves to an existing unpaid CAD transaction, it simulates the Pateno webhook completing it. If it resolves to a p_id, provide amount to simulate a direct auto-deposit for that user/team.

Using amount only: Creates a new funding transaction for the authenticated user and processes it immediately.

At least reference or amount must be provided.

post/v0.2.4/payment/simulate-interac-funding

Request body

amountnumber

Amount in CAD (max 1000). Required with p_id references or for standalone funding.

senderNamestring

Name of the simulated sender.

senderEmailstring email

Email of the simulated sender.

Example request

{
  "amount": 100
}

Response

Interac funding simulated successfully.

statusstring
messagestring

Example response

{
  "status": "success",
  "message": "Interac funding simulated successfully",
  "data": {
    "simulated": true,
    "simulatedAmount": 100,
    "status": "paid"
  }
}