Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
49 views

Is it Possible to Make an ADF Web Activity PUT Request Without a Body?

I have an API that I am accessing using Bruno and its a PUT request that does not require a body. When I try this as a Web activity in ADF I get the error a 'valid body is required for PUT and POST ...
CGarden's user avatar
  • 349
2 votes
0 answers
43 views

Why am I getting a 404 status code from my PUT method, when the GET method returns 200?

The method saveToDatabase() that I use to store the list of questions to my db.json on Github, returns 404 status code from the PUT method. Whereas, the same method returns a 200 status code when ...
Sameer Ahmed's user avatar
0 votes
0 answers
45 views

Syncing SQL database with WooCommerce via REST API fails to update product prices correctly

Problem: my Node.js sync server logs show successful product updates in WooCommerce (HTTP 200 responses), but when checking the WooCommerce admin panel: Some price/name changes aren't actually saved ...
Navitank's user avatar
-2 votes
0 answers
12 views

NextJS migrate from App Router 14 to 15. Property 'params' is missing in type 'params' [closed]

tengo este error al momento de compilar mi proyecto en produccion en Next.js, al ejecutar npm run build: [email protected] build next build ▲ Next.js 15.1.6 Environments: .env Creating an optimized ...
Sergio Garay's user avatar
0 votes
1 answer
25 views

AWS - put data on S3 results in TimeOutError

I am creating a dataset on AWS S3, for their Opendata program. I am fetching audio files, which are already stored on S3. I then segment them into smaller audio chunks, and putting those on S3 again. ...
user305883's user avatar
  • 1,749
0 votes
0 answers
38 views

Python(flask) PUT TypeError: Todo.put() got multiple values for argument 'todo_id'

I am creating a todo list app using React and Python. But the update todo function is not working properly and gave me TypeError: Todo.put() got multiple values for argument 'todo_id'. @blp.arguments(...
Lena's user avatar
  • 1
1 vote
1 answer
114 views

Laravel/Inertia js/React js PUT Request Form Data Not Fully Received on Update When Including Image Upload

I'm facing a strange issue in my Laravel Inertia.js project. I can successfully create new 'Ville' resources, including image uploads. Updates also work fine if I don't upload a new image. However, ...
Stuff lahza's user avatar
0 votes
0 answers
19 views

Upload File using PUT request to a Signed URL

I am trying to send a file to a signed URL using PUT request but the file is not uploading. Below is my code: const uploadToBucket = async (uploadUrl, fileUri, contentType, fileSize) => { try { ...
Shafi ul Hussnain's user avatar
0 votes
0 answers
36 views

Error: 400 - {"message":"Invalid json data"} While using Post method in Unity

I am trying to send a PUT request using UnityWebRequest to update game data on a server. However, I keep getting the error: css Copy Edit Error: 400 - {"message":"Invalid json data"...
Abdul Rehman's user avatar
0 votes
0 answers
16 views

Error while testing PUT (with EntityState.Modified) request to a database using InMemory, xUnit in .NET unit tests

I do not have much experience with testing in .NET. I ran into an issue that I do not understand how to solve. Please advise where I can read about it. I have a backend code that works with a simple ...
Ira 's user avatar
  • 1
0 votes
0 answers
35 views

JPA PUT request not triggering 500 code instead of 409

I'm working on a simple DB and I need to have an error 409 show up in Postman if when updating the patient record the email has already been used by another patient in the DB. I'm getting the 409 just ...
Kristy Murphy's user avatar
0 votes
0 answers
30 views

Why do I get an error whenever I try to withdraw money from someone's account?

The backend method in Java @PutMapping("/withdraw/{accountId}/{amountToWithdraw}") public ResponseEntity<Account> withdrawMoney(@PathVariable int accountId, @PathVariable double ...
Marius Carchilan's user avatar
1 vote
0 answers
48 views

Error method PUT HTTPS IIS 10 Angular 16 Windows Server 2019

I have a Web Site (Angular 16). That's deploy in IIS 10 (HTTPS port 443 with a Certificate) I have ARR enabled, and on my web site tengo a rewrite ruler. My back-end is in Node.js. It's running in the ...
Jorge's user avatar
  • 21
0 votes
1 answer
435 views

Laravel not processing FormData in a PUT request

I'm facing an issue while trying to send a PUT request with FormData in Laravel using Inertia. I need to update a user, but the PUT request seems to be ignored, and Laravel is not processing the ...
Saqif Haque's user avatar
1 vote
1 answer
47 views

how to pass data to redux toolkit mutation

In component, const [ updateproductapi ] = useUpdateProductMutation() formdata.append("product_name", product.product_name); formdata.append("product_price", product.product_price);...
tytom2003's user avatar

15 30 50 per page
1
2 3 4 5
148