The server understands the content type but can't process the instructions—often due to validation errors.
Your request is syntactically correct, but the data fails validation. Invalid email format, password too short, etc.
Field validation failures
Business logic constraints
Invalid enum values
Related resource not found
Read the error message for specific fields
Validate data client-side before sending
Check for required field constraints
Verify related resources exist
DevConsole shows the full error response. Use the JSON formatter to read detailed validation messages.
Get DevConsole ProYour request is syntactically correct, but the data fails validation. Invalid email format, password too short, etc.
Read the error message for specific fields Validate data client-side before sending Check for required field constraints Verify related resources exist
Yes, 422 is a client error. This means the issue is with the request being sent, not the server.