The user's identity should come from their session token or authentication token — not from what they tell you in the request. When a client says "give me user 1041's data," the server should ignore that claim and look up the user from the token instead.
Cross-reference: "Your token says you're user 1042. You're requesting data for user 1041. These don't match. Denied."
Think of a bouncer at a venue. The guest says "I'm on the VIP list." The bouncer doesn't take their word for it — they check the actual list. The token is the list. The client's claim is just a claim.
If the token itself is compromised — stolen, forged, or shared — the check passes. Token security is a separate concern (API2: Broken Authentication covers this). MIT 03 only helps when tokens are intact and trustworthy.
Ask your team whether IDs in your API are sequential numbers. Guessable IDs are a warning sign worth a short engineering conversation — switching to random UUIDs is a low-cost, high-value change.