{
  "errors": [
    {
      "path": "email",
      "message": "Email is invalid"
    },
    ...
  ]
}

For any errors, Pocketflows will return non-200 HTTP status codes and a JSON body with errors. The shape of the JSON blob is below.

Error Response

errors
array
{
  "errors": [
    {
      "path": "email",
      "message": "Email is invalid"
    },
    ...
  ]
}