Retrieve Business Projections

API to get projected amounts of annual transaction volume in each of the payment form factors
Business
Retrieve Business Projections
 last updated: 
December 22, 2023

Use this API to retrieve estimated annual transaction projections for a business.

END POINT

  1. GET /v1/business/{{businessId}}/projection

RESPONSE

  1. {
  2.  "transactions": {
  3.    "annual": {
  4.      "send": {
  5.        "ach": {
  6.          "count": "30",
  7.          "amount": "1000.00"
  8.        },
  9.        "internationalAch": {
  10.          "count": "0",
  11.          "amount": "0.00"
  12.        },
  13.        "domesticWire": {
  14.          "count": "20",
  15.          "amount": "2000.00"
  16.        },
  17.        "internationalWire": {
  18.          "count": "20",
  19.          "amount": "2000.00"
  20.        },
  21.        "physicalCheck": {
  22.          "count": "20",
  23.          "amount": "2000.00"
  24.        }
  25.      },
  26.      "receive": {
  27.        "ach": {
  28.          "count": "20",
  29.          "amount": "2000.00"
  30.        },
  31.        "physicalCheck": {
  32.          "count": "20",
  33.          "amount": "2000.00"
  34.        }
  35.      },
  36.      "incoming": {
  37.        "achPush": {
  38.          "count": "20",
  39.          "amount": "2000.00"
  40.        },
  41.        "achPull": {
  42.          "count": "20",
  43.          "amount": "2000.00"
  44.        },
  45.        "internationalAch": {
  46.          "count": "20",
  47.          "amount": "2000.00"
  48.        },
  49.        "domesticWire": {
  50.          "count": "20",
  51.          "amount": "2000.00"
  52.        },
  53.        "internationalWire": {
  54.          "count": "20",
  55.          "amount": "2000.00"
  56.        }
  57.      }
  58.    }
  59.  }
  60. }