improved

GraphQL queries now required in request body

Starting in version 2025-01, GraphQL queries must be sent in the request body. They will fail if passed in the query param of the URL.

For example, the following query would fail in versions 2025-01 and later:

https://api.monday.com/v2?query=query { me { id } }

To make the call work, include the GraphQL query in the request body:

query {
  me {
    id
  }
}