Events
onTableChange

Acumatica Push Notifications

9min

The following information applies specifically to Acumatica integration.

Acumatica

Push Notifications

  • In Acumatica, configure push notification definitions to send updates to a notification destination ( API endpoint) when specific data changes occur. For more information on setting up push notifications in Acumatica, refer to Acumatica's Push Notifications documentation.

Generic Inquiry (GI)

  • Create a Generic Inquiry (GI) in Acumatica with the following three output columns:
    • _tab = 'Customer'
    • _del (db deleted)
    • _mod (time)
  • Create a push using the GI to the API endpoint.
Acumatica Generic Inquiries
Acumatica Generic Inquiries


Jigx

API Endpoint

POST


Base URL

Replace {{baseUrl}} with the appropriate URL for your region.



Authentication

  • A Personal Access Token (PAT) is required. Get your PAT from My Profile in Management.
  • Enter the PAT as an API key with the prefix BEARER, for example, BEARER XXXXXXXXXX.

Core elements

Element

Description

organizationId

solutionId

In under Solution Details.

baseURL

Refer to the Base URL table above to find the URL for your region.

acumatica-cdc

cdc is a standard term for change data capture.

<table>

The table created in receives data changes pushed from Acumatica, which in turn updates the app. You can name the table whatever you like.



The Acumatica GI pushes data to the API endpoint, which then updates the corresponding table in in  > Solution > Data > <table>.

Dynamic Data
Dynamic Data


Solutions

In the index.jigx file of the solution in , configure the onTableChange event. This event allows mobile updates in by monitoring data changes in the table.