Handling RealmID in Quickbooks

Quickbooks RealmID

Quickbooks requires a RealmID to be included in all of their API calls. Upon successful authentication, Quickbooks shares this information as part of the auth process.

Get your users RealmID

Pathfix fetches this information during the auth process and offers the RealmID as a parameter that can be added in your API calls.

You can access this by adding {{usr_realmId}} within the url. Pathfix will substitute it with the users RealmID for each call.

Sample

{
    "url": "https://quickbooks.api.intuit.com/v3/company/{{usr_realmId}}/query?query=select * from CompanyInfo&minorversion=55",
    "method": "GET",
    "headers": {
        "accept": "application/json"
    }
}