What is the syntax to update employee address using API call for Quickbooks Online on Postman? - postman

I have successfully done an API call from Quickbooks Online that shows me a list of employees through Get https://{{baseurl}}/v3/company/{{companyId}}/query?query=Select * from Employee.
I wanted to find out what the syntax was to update employee addresses using an API call. I am new to all the lingo, but I would love to learn, so any advice would be appreciated!

You can find all you need in the documentation:
https://developer.intuit.com/app/developer/qbo/docs/api/accounting/most-commonly-used/employee#full-update-an-employee

Related

Facebook Graph API Query: Find all friends of a certain gender

I'm working on moving my app's code from Facebook's deprecated FQL to the graph API. Overall, the API makes a lot of sense thanks to the graph explorer tool. I've been able to figure out how to make general queries such as getting all my friends (and each friend's gender, first name, last name, and profile picture):
https://graph.facebook.com/v2.2/me?fields=friends{gender,first_name,last_name,picture}
The main issue I'm running into is figuring out how to make my query more specific. What I really want to do is get all my friends who are females. How would I go about specifying a desired 'gender' here? Is this even possible? Thanks for your help.
Filtering via query is not possible with the current version of the Graph API. You'll have to filter the result of your request in your application unfortunately.

Highrise CRM contact search API

I'm trying to get a contact in Highrise CRM using the following API:
/people/search.xml?email=emailID
But the results are not related to the email of the contact I asked for. Am I missing something here?
Take a look at the API docs here:
https://github.com/basecamp/highrise-api/blob/master/sections/people.md#search-people
Looks like your query string doesn't match the criteria format.
Also, try running curl to see what the response is and post it, might help to clarify. :)
API that works:
/people/search.xml?criteria[email]=emailID

How to get Tour Dates information from a band page through API

I'm working on a web site for a friend's band and I want to pull information from their facebook band page. Specifically I am looking to get tour dates. I am a beginner with the facebook APIs, but I did read through all of the documentation and I couldn't find anything on the tour date information through the graph API. I can pull basic info from them, but I can't seem to figure out how to get tour dates. Any help is much appreciated. Thank you!
The Tour Dates are provided by the Bandsintown Facebook app (ID: 123966167614127). As such, you need to use their API to access the dates.
Fortunately, Bandsintown.com does offer a nice API. Check it out at: http://www.bandsintown.com/api/requests
The above was just to obtain the dates as you see in the 'Tour Dates' link for most popular bands.
If the band uses Facebook events along with the app, you could just do a simple call to something like https://developers.facebook.com/tools/explorer/?method=GET&path=coldplay%2Fevents
If the band is using the Events functionality on Facebook you can use that to retrieve a list of all tour dates. Check the Events API page in the Facebook documentation:
http://developers.facebook.com/docs/reference/api/event/
And look at their example of what this looks like here:
http://developers.facebook.com/tools/explorer/?method=GET&path=331218348435

How to get "x is friends with x" in me/home using Graph API & Javascript SDk

is there a way to do this?
Using the me/home json feed, it shows up as a person and just one image of the person they have friended, even if they have friended several.
Is there a way to pull in all the information?
The most efficient way to achieve this is by using the Graph API Real Time Updates, there's no need to pull the home feed. You should be able to subscribe to the "friends" connection of the "user" object you need so your "callback server URL" will be hit by our servers when that user gets new friends (POST Request).
Note that you will only be able to retrieve the user's new friends public information unless they have previously authorized your App.
Please see further documentation at:
https://developers.facebook.com/docs/reference/api/realtime/
Many thanks
Daniel Torvisco - Developer Support Engineer at Facebook

Is there a Web Service API to the Google Product Search?

I want to call the Google product search and get back a parse-able XML file rather than having to scrape the HTML. I'm not looking for a SOAP based service, but a service that returns XML based on a URL passed in.
Correction--this did NOT work:
The Google Base API lists only a subset of Google product sellers (apparently only those who are active users of the Google Base product.)
http://code.google.com/apis/base/docs/2.0/attrs-queries.html
I eventually ended up using a screen scraping solution and then found that the data was too inconsistant to use for my purposes at all. :-(
http://answers.oreilly.com/topic/2165-how-to-search-google-and-bing-in-c/
use that refer link ,hopefuly it'll very usefull with you all guys