Workday errors in plain English.

Submit an Error
errors / studio / studio-workday-out-rest-custom-object-path

Studio workday-out-rest — Custom Object Endpoint Path Not Resolving

✓ Verified Workday Studio 0 lookups
The error HTTP 404 Not Found — The requested resource could not be found.

What it means

The workday-out-rest component needs a specific path segment beyond the base URL for custom object endpoints. Leaving the path blank or using just the base REST URL gives you a 404. The correct path includes the custom object alias and - for GET - a specific object ID.

Troubleshooting

  1. Open the workday-out-rest component and check the Path field - it needs the custom object alias path segment, not just the base Workday URL.
  2. Use the Select a Custom Object button (set method to GET), connect to your environment, pick the object alias and a test ID - Studio auto-populates the correct path.
  3. Deploy and run with a known worker WID to confirm the path resolves before wiring it into the full assembly.
  4. For PUT or POST, copy the path pattern from the GET configuration - the alias segment is the same.
⚡ Quick fix

Use the Select a Custom Object button in the component to auto-populate the correct endpoint path, test with GET on one record, then switch to the right HTTP method.

✓ Permanent fix

Document the custom object alias and full endpoint path in the integration design doc. Store a working GET call as a reference assembly in your Studio workspace so future rebuilds don't require rediscovery.

Related errors