Skip to content

Logo

Gigadat

Canadian Online Banking payment solutions that fit your needs

Supports in this guide: Payments | Payouts

Provider website: gigadatsolutions.com


What you need to do for start processing transactions (brief summary)

  1. Choose account type
  2. Get your credentials (from Gigadat)
  3. Connect in Dashboard
  4. Send an API request

Prerequisites: get from Gigadat

Get the following values for your Gigadat project/account:

  • Campaign id → Corefy field campaign_id → example: mid_123456789 → where to find: Gigadat backoffice / issued by Gigadat manager
  • Security token → Corefy field security_token → example: scrtkn_001 → where to find: Gigadat backoffice / issued by Gigadat manager
  • Access token → Corefy field access_token → example: acstkn_001 → where to find: Gigadat backoffice / issued by Gigadat manager

Payment & Payouts processing

Connect Provider account in Corefy Dashboard

Step 1 — Open connection form

Open Gigadat in the provider directory and press Connect at Gigadat Provider Overview page in the New connection section.

Step 2 — Fill in fields (provider → Corefy)

  • Campaign IDcampaign_id
  • Security Tokensecurity_token
  • Access Tokenaccess_token
  • Test Mode → choose 'true' if want connect in test mode (sanbox = true will be passed in transaction create request)

Success

You have connected Gigadat Provider account!


First request to Corefy API

What it does: creates a payout-invoice.

Payout

POST /api/payout-invoices

{
  "data": {
    "type": "payout-invoice",
    "attributes": {
      "service": "interac_etransfer_cad",
      "currency": "CAD",
      "amount": 10,
      "customer": {
        "id": "3c2b2c2f-8a2f-4a87-9f09-9d6f4c0b1b11",
        "email": "jane.doe@example.com",
        "phone": "+1 202 555 0123",
        "name": "Jane Doe"
      }
    }
  }
}


First request to Corefy API

What it does: creates a payment-invoice.

Payment

POST /api/payment-invoices

{
  "data": {
    "type": "payment-invoice",
    "attributes": {
      "service": "interac_aggregated_cad_hpp",
      "currency": "CAD",
      "amount": 12,
      "customer": {
        "id": "3c2b2c2f-8a2f-4a87-9f09-9d6f4c0b1b11",
        "email": "jane.doe@example.com",
        "phone": "+1 202 333 0123",
        "name": "Jane Doe"
      }
    }
  }
}


Additional info

  1. Is the Gigadat Interac flow fully redirect-based (i.e., no iFrame support at any step)? Yes.
  2. Are there any scenarios where the flow can be embedded within an iFrame, or is this restricted by Interac across all implementations? Restricted.
  3. From your experience with other merchants, is the standard approach always to open the flow in a new tab or external window? Depends on the merchant, often in a new tab.

FAQ / Troubleshooting

  • Invalid credentials / auth error → verify you used the correct keys for the chosen environment (sandbox vs production)
  • Not sure which account type to use? → ask your Corefy account manager

Question

Still looking for help connecting your Gigadat account? Please contact our support team!