API ERRORS

400 Bad request

https://sealdeal.ai/errors/bad-request

The request body or query was malformed or failed validation. `detail` says which field.

Retry only after changing the request

What causes it

  • A missing required field, a wrong type, or an unparseable JSON body.

How to fix it

  • Fix the request against the OpenAPI schema. Retrying the identical payload will fail identically.

Example response

HTTP/1.1 400
Content-Type: application/problem+json

{
  "type": "https://sealdeal.ai/errors/bad-request",
  "title": "Bad request",
  "status": 400,
  "detail": "..."
}

`type` is stable and safe to branch on in code. `detail` is specific to your request and is the field to read for the particulars; its wording may change.

All error types · API documentation · Integrations

Related errors: 404 Not found · 409 Conflict · 409 List has in-flight sequences · 422 Stage gate not met