Windchill REST API returns only current user tasks how to get all tasks
Hello ,
I'm working on a workflow notification system using Windchill OData REST API, and I'm facing an issue with user-based filtering.
**Current Situation:**
- When I call `/Windchill/servlet/odata/v5/Workflow/WorkItems` endpoint with Basic Authentication
- The API only returns WorkItems assigned to the authenticated user
- If I authenticate as "PLM-1" user, I only see PLM-1's tasks
- If I authenticate as "oozcelik" user, I only see oozcelik's tasks
**What I Need:**
I need to retrieve ALL WorkItems across ALL users to build a notification system that monitors new task assignments and sends notifications to the assigned users.
**What I've Tried:**
1. Using administrator account (PLM-1) - still only returns tasks assigned to admin
2. Using $expand and $filter parameters - no success
3. Looking for different endpoints like /AllWorkItems - couldn't find any

