Hi,
We are developing a service and need data from our work_order
table.
When I run the URL /api/iam/alias/work_order
in Postman, I get the expected results. However, when I request this data in a LINQPad script, I receive data from a different table (document_pool
). My work_order
table has only 25 rows, but the query returns all rows from document_pool
.
I can't figure out why this is happening. It worked fine last week, and no changes have been made since then. I've restarted Indicium several times without any success. I even created a version where I removed all references between work_order
and document_pool
, but the issue persists.
Interestingly, when I run the same scripts against my UAT environment, everything works as expected. This leads me to believe that the code is correct.
Here are the URIs I'm using:
- Development (fails):
https://text.com/API/iam/cff_lab
- UAT (works):
https://text.com/api/iam/cff_exportpacking
On my DEV machine, the query returns the number of rows from document_pool
.
Any insights on what might be causing this issue?
Results from DEV machine;
Results from my UAT machine; returns desired/expected data.
Any thoughts on how this can be?
Thanks,
Blommetje