I am trying to get data of attendance API from zoho people in postman application .. so for this i already get access token and now i am trying to access all data ..
I tried this link and paste in get
https://www.zoho.com/people/help/api/attendance-api.html
but this shows me an error .. here is only empid .. and i want all data in bulk so how i get this any idea kindy check image
image
Here is a sample URL that I use in Postman for accomplishing a similar if not the same task. (Be sure to substitute your auth token and data):
https://www.zoho.com/people/api/forms/P_AttendanceForm/getRecords?authtoken=YOUR_AUTH_TOKEN&searchParams={searchField:'AttendanceDay',searchOperator:'Between',searchText:'2020-7-8;2020-7-15'}
strong text DEMO
should select output type in postman
Related
I am looking to connect Power BI to Google Firebase.
I've followed the below steps,
Get Data > Blank Query
Entered the below Query
let
Source = Json.Document(Web.Contents("url to firebase database")),
#"Converted to Table" = Record.ToTable(Source)
in
#"Converted to Table"
I've entered the url but it looks like its expecting a JSON output. How can I get a JSON output to include on Power BI to visualise data stored on Firebase?
For what I am looking in the error message in image, the problem in not connecting with Firebase, instead the problem is the query you are using, the variable source is getting the content of the page and that is why is giving you that error.
You can try this command that return the Json of the a collection with the values in it.
projects/{project_id}/databases/{databaseId}/documents/{document_path}/
The document path is the document that you want the information
And the databaseId if you don't know which is it, it is probably (default) you need to put the () in the url of the request
Here you can see how the Json is structured
i am currently using TFS API who's link is
https://www.visualstudio.com/en-us/docs/integrate/api/wit/work-items#byids
currently in my project i want to accees the following workitem 61092
http://apactfs.cbre.com:8080/tfs/CBRE.APAC.Applications/MRI_SCRUM_GIT/_workitems?_a=edit&id=61092
and in Postman i am hitting the id by this Link By GET
http://apactfs.cbre.com:8080/tfs/cbre.apac.applications/MRI_SCRUM_GIT/_workitems?_a=edit&id=61092&api-version=1.0
Since you only want to get one work item, you should refer to this section of the document:
https://www.visualstudio.com/en-us/docs/integrate/api/wit/work-items#get-a-work-item
And in Postman you should use the following Link By GET
http://apactfs.cbre.com:8080/tfs/cbre.apac.applications/_apis/wit/workitems/61092?api-version=1.0
I am using jsonplaceholder (http://jsonplaceholder.typicode.com/) locally. I am testing my GET and POST calls via extjs rest proxy.
I am able to read data. But when I create a model object and save it, the HTTp code for option is 204 and for POST is 200
BUT data is not stored in database of jsonplaceholder local server.
Any Idea where actual problem exists?
I have worked with json-server and this is the expected results and for your knowledge, here is a detailed explanation of HTTP Status codes Status Code Definitions.
I was wondering if someone could tell me why I can't see the json response from a request that is also of type json in the JMeter View Results Tree. I know that the response is there because I use a regular expression to extract data (I wrote the reg ex based on result returned in Firebug). So the data can be extracted from the json response it just doesn't display in View Result Tree. I can see the json response for another request for a different app I performance test with JMeter, but that particular request is an ajax request. not sure
Add a sample writer and display content here.
http://jmeter.apache.org/usermanual/component_reference.html#Simple_Data_Writer
You will see the issue
HI there any one who looks in this post for jmeter, you may be bit worried when you cant find answers in internet regarding how to log your response when you sent a request , here is the solution and simple as it is...
just add a line like below.
result.setResponseData("put any content here to be displayed as String.", "UTF-8");
and check your response will be cool as you done.
I'm learning how to use a third party API called Wunderground and I don't know how to request, receive, and use their results which is in a Json format.
If you see their website a developer can sign up for free and receives an API KEY. You can then request weather data in the following URL format.. http://api.wunderground.com/api/KEY/FEATURE/[FEATUREā¦]/[SETTINGā¦]/q/QUERY.FORMAT
So I have tried it in my web browser by typing some parameters and I received a very long Json file with the correct information (I checked). Problem is I don't have the slightest idea of how to create a variable which can make this request, and even if I was able to do that I don't know where should I receive the file and how to get only the results I want (in this case current weather).
You have to use Titanium.Network.HTTPClient to make request.
For code examples related to Json parsing you can use:
Appcelerator: Using JSON to Build a Twitter Client
HTTPClient()