List all Stats

Retrieves list of all stats that belong to a program.
Program
List all Stats
 last updated: 
November 30, 2023

ENDPOINT

  1. GET /v1/program/:id/stats

RESPONSE

  1. {
  2.     "business": {
  3.         "total": 68,
  4.         "notStarted": 2,
  5.         "submitted": 0,
  6.         "approved": 61,
  7.         "declined": 1,
  8.         "review": 4
  9.     },
  10.     "person": {
  11.         "total": 420,
  12.         "notStarted": 162,
  13.         "submitted": 0,
  14.         "approved": 161,
  15.         "declined": 50,
  16.         "review": 47
  17.     },
  18.     "account": {
  19.         "total": 223,
  20.         "active": 169,
  21.         "deactivated": 6,
  22.         "blocked": 21,
  23.         "debitBlocked": 27,
  24.         "creditBlocked": 0
  25.     },
  26.     "balance": {
  27.         "total": "7260946.38",
  28.         "average": "32560.30"
  29.     },
  30.     "transaction": {
  31.         "intrabank": {
  32.             "credit": "631729.86",
  33.             "debit": "745136.83"
  34.         },
  35.         "ach": {
  36.             "credit": "2229423.54",
  37.             "debit": "3299315.89"
  38.         },
  39.         "card": {
  40.             "credit": "54130.29",
  41.             "debit": "582420.12"
  42.         },
  43.         "domesticWire": {
  44.             "credit": "14556705.14",
  45.             "debit": "6149778.40"
  46.         },
  47.         "internationalWire": {
  48.             "credit": "",
  49.             "debit": "100000.00"
  50.         },
  51.         "physicalCheck": {
  52.             "credit": "75132.44",
  53.             "debit": "19568.46"
  54.         },
  55.         "digitalCheck": {
  56.             "credit": "",
  57.             "debit": ""
  58.         },
  59.         "physicalSolidCard": {
  60.             "credit": "",
  61.             "debit": ""
  62.         },
  63.         "virtualSolidCard": {
  64.             "credit": "152.00",
  65.             "debit": "2356.26"
  66.         },
  67.         "debitCard": {
  68.             "credit": "",
  69.             "debit": ""
  70.         }
  71.     },
  72.     "card": {
  73.         "physicalCard": {
  74.             "total": 156,
  75.             "active": 62,
  76.             "blocked": 3,
  77.             "cancelled": 10,
  78.             "pendingActivation": 81
  79.         },
  80.         "virtualCard": {
  81.             "total": 515,
  82.             "active": 327,
  83.             "blocked": 19,
  84.             "cancelled": 169,
  85.             "pendingActivation": 0
  86.         }
  87.     }
  88. }