You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const selectStatement = `SELECT * FROM Customer WHERE DisplayName LIKE '%MFM 58%'`; // does NOT work!
// const selectStatement = 'SELECT * FROM Customer'; // works just fine! :)
const resp = await oauthClient.makeApiCall({
url: `https://sandbox-quickbooks.api.intuit.com/v3/company/${realmId}/query?query=${selectStatement}&minorversion=65`,
method: 'GET'
});
This does NOT work!
I always get a 400 Bad Request - but everything is just fine! NO problems with the auth, because the following selectStatement works just fine: selectStatement = 'SELECT * FROM Customer' ... so what gives? I don't see what is wrong with my call!
The text was updated successfully, but these errors were encountered:
I have the following query:
This does NOT work!
I always get a
400 Bad Request
- but everything is just fine! NO problems with the auth, because the followingselectStatement
works just fine:selectStatement = 'SELECT * FROM Customer'
... so what gives? I don't see what is wrong with my call!The text was updated successfully, but these errors were encountered: