GET
/
v1
/
businesses
/
{business_id}
/
notifications
curl https://sandbox.layerfi.com/v1/businesses/863ed926-e30d-40f4-8e7e-b0d5387ce4fb/notifications \
  -H "Authorization: Bearer <access_token>"
{
  "data": {
    "type": "Business_Notifications",
    "uncategorized_transactions_this_month": 1,
    "uncategorized_transactions_all_time": 7,
    "todo_tasks": 1,
    "external_accounts_requiring_update": 0
  },
  "meta": {}
}

Path Parameters

business_id
string
required
ID of the Business to retrieve notifications for.

Response

Returns a Business Notifications Object
uncategorized_transactions_this_month
int
Number of bank transactions from the current month that have not been categorized.
uncategorized_transactions_all_time
int
Number of bank transactions that require categorization dating back to the business’s activation date.
todo_tasks
int
Number of tasks that require user attention. Only applicable to businesses enrolled in bookkeeping services.
external_accounts_requiring_update
int
Number of linked account connections that require re-linking or fixing.
refunded_amount
integer
Amount of refund received by customer.
curl https://sandbox.layerfi.com/v1/businesses/863ed926-e30d-40f4-8e7e-b0d5387ce4fb/notifications \
  -H "Authorization: Bearer <access_token>"
{
  "data": {
    "type": "Business_Notifications",
    "uncategorized_transactions_this_month": 1,
    "uncategorized_transactions_all_time": 7,
    "todo_tasks": 1,
    "external_accounts_requiring_update": 0
  },
  "meta": {}
}