We have a document indexed with the _id field set to "STT -30247-010" (note the space).
We are unable to retrieve this document via the API (documents without spaces in the _id) work fine.
With a _search (q=_id="STT -30247-010") we can retrieve it.
Is there any way to retreive the document directly via the ID (not search)?
GET /myindex/_source/STT%20-30247-010 => 404
GET /myindex/_source/STT+-30247-010 => 404
GET /myindex/_source/STT -30247-010 => 404