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.
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"
}
]
}