Skip to main content

GET Queries were working till yesterday(17 Feb) and are failing with 400 INVALID_GRAPHQL_REQUEST today

  • February 18, 2025
  • 3 replies
  • 56 views

Queries like getting the columns data or items were working fine in automation scripts till yesterday .Today we see 400 Bad Request .
They work fine with POST , was there any upgrade overnight ? Will GET not be supported in future?
Using 2023-10 API version.

3 replies

OmerK
Forum|alt.badge.img+1
  • monday.com Team Member
  • February 18, 2025

Hey there @chamundeshwari , welcome to the developers community!
The 2023-10 API version was deprecated a while ago, please migrate to the current version and let me know if you have any more questions.
Cheers,


  • New Participant
  • February 20, 2025

I am having the same issue, my get items call its failing with the same error code “INVALID_GRAPHQL_REQUEST” since FEB 17. I have read all the documentation but not helpful, please advice!!!


  • Participating Frequently
  • February 21, 2025

How GraphQL works over HTTP:
https://graphql.org/learn/serving-over-http/

Basically, if you want to use GET (if the server offers it) you have to send your query as a query string not in the body. Bodies in GET requests are not part of the HTTP standard.

Why are you using GET and not POST in the first place? Just curious.