Bad Request: Validation failed for 1 parameter(s) - Update To Closed Post

Hi guys

Came across the following error message today:

Bad Request: Validation failed for 1 parameter(s)

This is an update to the original topic I found on this subject - Bad Request: Validation failed for 1 parameter(s)

Basically I was getting the error after using the automatic error handling which creates an “ignore” module.

After 10-15mins of trying to figure this out I removed the module and added manually.

Works fine now!

Thought I would post to help others… Cheers MJ

This could also be intermittent server issues on the external service.

Handle errors so scenarios don’t stop.

You might want to add some error handling to your modules to handle exceptions, so the failing module(s) can automatically be retried or ignored. By handling any errors by adding a “Error handler” to the module, the scenario won’t throw an error and get turned off.

Error directives can only be added to an error handler route.

1. Right click and select “Add error handler”

Screenshot_2024-04-13_220413

2. Error handlers will appear

For more information on error handling, see:

samliewrequest private consultation

Join the Make Fans Discord server to chat with other makers!

1 Like

I experienced the same issue under the same situation.
The automatically added Ignore-Errorhandler with a “Error Type = RuntimeError” Filter does not work, adding the Ignore-Handler with the according filter manually works.

For further reference, this is the error response which is visible in Chrome’s network inspector:

{
    "detail": "Validation failed for 1 parameter(s).",
    "message": "Bad Request",
    "code": "SC400",
    "suberrors": [
        {
            "message": "Invalid value in parameter 'blueprint'. Value is NOT valid against schema: should be >= 1",
            "name": "TypeError"
        }
    ]
}