Hello there!
We are using QuickBooks, and one of the key things we want to achieve is to detect when a user has made a payment on an invoice.
We understand that to do this, we need to configure a webhook from the Intuit Developer portal. Here’s an example of the payload we receive:
{
“eventNotifications”: [
{
“dataChangeEvent”: {
“entities”: [
{
“id”: “89”,
“lastUpdated”: “2025-04-01T16:24:02.000Z”,
“name”: “Payment”,
“operation”: “Create”
}
]
},
“realmId”: “<COMPANY_ID>”
}
]
}
Our question is: how can we determine which user_id
this event is related to? The realmId
(which corresponds to the company_id
) is included in the payload, but we don’t have access to this value through any other endpoint. As a result, we’re unsure how to associate a specific user_id
with its corresponding realmId
.