Get user permissions per item

The goal is to get the permissions for tbl_payees before querying it in my own cognitive search index.

Following the docs from here Permissions | Directus Docs
I have a collection with an item id that exists however i seem to get the generic response. Also I don’t seem to see the read permissions for it.

I checked the item exists when i get the item using the same users static token.

What i expected from /permissions/me/:collection/:id:

{
  "data": {
    "read": {
      "access": true
    },
    "update": {
      "access": false
    },
    "delete": {
      "access": false
    },
    "share": {
      "access": false
    }
  }
}

what i got:

{
	"data": {
		"update": {
			"access": false
		},
		"delete": {
			"access": false
		},
		"share": {
			"access": false
		}
	}
}

Worked around the issue if can get it with a graphql query means i have the permissions to search for that index related to that collection i query