Date query param in native git Collections

Hi,

In postman v12.2.1 for collection with the new native git integration, request get broken if we input a date in a query param of a request
For example with the following request in a new collection:

the date do get sync in the git file:

but as soon as we refresh the workspace, the request disapear from postman

(we have the same problem with value in date-time format also)

1 Like

Hey @bcatherinet :waving_hand:

Welcome to the Postman Community! :postman:

I’ve not been able to replicate this on my side, in the latest version. Are you able to provide more information?

A short recording of the behaviour would be great :folded_hands:

Here is an export of collection file that have the exact same issue when you import it in “native git” folder:

{

  "info": {
    "name": "Date misfunction v12",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
  },
  "item": [
    {
      "name": "Beautiful request with Date param",
      "request": {
        "method": "GET",
        "header": [],
        "url": {
          "raw": "incredibleSite.com/date-check?date=2026-03-03",
          "host": [
            "incredibleSite",
            "com"
          ],
          "path": [
            "date-check"
          ],
          "query": [
            {
              "key": "date",
              "value": "2026-03-03"
            }
          ]
        }
      },
      "response": []

    }
  ]
}

After importing it the collection is empty:

1 Like