how to find employee in netsuite via name using the RestAPI
I am trying to integrate the netsuite using RestAPI. But when trying to fetch employee record i am not able to get a response. The API keeps giving me the following error.{"title": "Bad...
View ArticleADF copy activity for REST API POST requiring string value in request body field
I have a ADF copy activity where my source is a REST API POST statement to a report process in one of our data sources. I have the parameters for the report stored in a SQL server table and I am...
View ArticleREST API Error on Wordpress site - Ubuntu
I think I'm going crazy.I've tried all the problems I've seen on the internet but I can't solve them.I installed wordpress but I can't make any changes to any page. It's like wordpress can't access the...
View ArticlePass multiple JSON data in Request Body of Postman and Get into Java Rest API...
I want to get multiple JSON data which I am passing into Postman in Body as Json format.If I am passing single json data like : "{"firstName":"riya","lastName":"soni"}" so I can get it in my Java API...
View Articlecurl through authenticated proxy and authenticated http resource
I want to do a post (twitter in this case) with a oneliner.If I don't have proxycurl -u user:pass -d status="message" http://twitter.com/statuses/update.xmlworks perfectly.But when I am behind a...
View ArticleHow do i define an api route in next js 14?
I'm trying to build a simple REST api. I have a route.ts file inside of src/app/api/timetable folder. Here is my route.ts:import { NextApiRequest, NextApiResponse } from "next";type ResponseData = {...
View ArticleGet LocalDate from the @RequestBody, convert it to dd/mm/yyyy format, convert...
I am creating a Rest API applicaton which tracks users` expenses. I have date variable of type LocalDate and the default format is yyyy-mm-dd but I want to store dd/mm/yyyy in the databasewhat I tried...
View ArticleWhatsApp ChatBot Integeration with Wix [closed]
We manage eCommerce orders via a Wix-hosted website where order details appear on our Wix dashboard, allowing admin to assign deliveries. Now, we've added a WhatsApp chatbot for orders, and we need...
View ArticleFetching products from external api supplier
I have a partner who owns a warehouse with thousands of products. We want to connect our Magento 2.4.5 store to this partner so that we can sell their products using our Magento 2 store. The partner...
View ArticleGenerating eBay REST API User Tokens from console app
I need to generate user tokens for the new eBay RESTful APIs from my console app, which is used to pull down and store order information from my selling account into my private database. This requires...
View ArticleWhy starts the mimetype of a JSON with application? [closed]
Why is the mimetype for a JSON file application/json not text/json? It would make much more sense because a JSON is a text file. A JSON file can be opened by a normal text editor like vim. So why...
View ArticleWindchill REST API Get all WorkItems
We want to create a list with tasks of all users by using the Windchill REST API.We used the GET/WorkItems Endpoint to get the list.Windchill/servlet/odata/v3/Workflow/WorkItemsIt works fine for those...
View ArticleSending gzip data using restclient or postman
How can I send gzip data as part of body using restclient or postman?. I used apache restclient 3.2.2 also couldn't able to get the response. I have attached images for reference.Basically I have an...
View Articlecannot implicitly convert type 'system.net.http.httpresponsemessage' to...
I am creating a web service in visual studio 2015 using MySQL databases. I want implement only a GET method using HTTP. Now when I am doing it I cam accross and error. Which is cannot implicitly...
View ArticleAPPDYNAMICS Public Rest APIs info
I'm new to APPDYNAMCS and looking for APPDYNAMICS Public Rest APIs for the below data. I'm able to find out a few of them but not all. Can someone help me with this? Thanks in AdvanceLooking for REST...
View ArticleREST services: why should I bother with supporting multiple resource...
I'm trying to wrap my head around REST principles, and the multiple representations principle confuses me. It'd appear to me that server side could be greatly simplified by having a single canonical...
View ArticleI set a cookie on the server in the login handler, but the cookie is not set
It's my cors headers:r := chi.New Router()r.Use(cors.Handler(cors.Options{ AllowedOrigins: []string{"https://SECRET.COM", "http://SECRET.COM"}, AllowedMethods: []string{"GET", "POST", "PUT", "DELETE",...
View ArticleHow can I create a RESTful calculator?
Given that RESTful web services are all based around the sacred idea that "everything is represented as resources and can be accessed by an address (URI)", this may make sense for CRUD applications...
View ArticleHow to valid @RequestHeader in spring boot
How can I verify required header if it's missing or wrong format? @RequestMapping(value = "/example/{id}", method = RequestMethod.PUT) public ResponseEntity<>...
View ArticleShowing nothing in api-docs while creating Swagger API documentation
The problem is that api-docs is being generated when I don't add .type() and .outType() but the format of the post request is not there. After adding them just like in the below statement api-docs is...
View Article