v1

latestOpenAPI 3.1.02026-07-24136043.5 KB

Direct deposit registration check

Checks if an email has a direct deposit registration with Interac

post/verify

Request body

merchant_idstring required

The 8-character Merchant account ID assigned by Paramount.

merchant_passstring required

The processing password assigned to the Merchant by Paramount.

emailstring required

Email to check with Interac.

Example request

{
  "merchant_id": "V0123456",
  "merchant_pass": "4<z37w4S?famE3f",
  "email": "john.doe@verify.ca"
}

Response

Data retrieved successfully

directDepositEnabledboolean

Has this email a direct deposit registered ?

registrationNamestring

Name registered to this email

Example response

{
  "directDepositEnabled": true,
  "registrationName": "John Doe",
  "consumer": {
    "firstName": "John",
    "middleName": "Smith",
    "lastName": "Doe",
    "companyName": "Verify Inc.",
    "tradeName": "Verify"
  }
}