Skip to main content
Work in progressThis section is currently under active development as part of improvements planned for 2026. Content may change as we expand product capabilities.If you’re interested in early access or want to learn more about what’s coming, feel free to reach out to the team.
EFT V2 replaces V1’s endpoint-by-endpoint integration with a single session-based flow. You create one session, launch the hosted Flinks Pay experience, and monitor the session to completion. No custom front-end required.
Looking for the original endpoints (create transaction, schedules, PAD agreements)? See the EFT V1 reference. V2 is the recommended path for new integrations.

How V2 differs from V1

This is the Regular EFT path. Guarantee features belong to the GEFT product.

Base URLs

Production: {{BaseUri}} Sandbox: {{BaseUri}}

Authentication

EFT V2 uses the OAuth 2.0 Client Credentials flow:
  1. Authenticate with Basic auth (Client ID and Secret) at the /Authorize endpoint.
  2. Receive a Bearer token valid for 599 seconds (10 minutes).
  3. Use the Bearer token on all subsequent calls via the Authorization: Bearer header.
  4. Refresh the token before it expires.
Session creation requires the RegularEft feature to be enabled on your client (otherwise the request returns 403).

API Endpoints

Quick Start

1. Authenticate

2. Initiate a session

The response returns a sessionId:

3. Launch the user flow

4. Monitor the session

Session Status Codes

Guarantee-related outcomes do not apply to regular EFT. They are specific to GEFT.

Validation Rules

  • type must be EFT; direction must be DEBIT; currency must be CAD (defaults to CAD).
  • payor.firstName, payor.lastName, and payor.email are required.
  • payor.address is optional for regular EFT. If provided, address line 1, city, province, postal code, and country are required.
  • payee must be omitted: funds settle to your client’s configured account.
  • referenceId is optional but recommended; it must be 1 to 36 alphanumeric characters or hyphens.
  • amount is optional; if provided it must be greater than 0, have at most 2 decimal places, and fall within your client’s configured minimum/maximum EFT amount. If omitted, the user enters the amount in the hosted flow.

Next Steps

  1. Initiate Session: full request and response schema
  2. Session Details: retrieve full session information and status