API ERRORS

404 Not found

https://sealdeal.ai/errors/not-found

No resource with that id exists inside your organization. The API never distinguishes a missing record from one belonging to another tenant.

Retrying will not help

What causes it

  • A wrong or stale id.
  • The record was soft-deleted. GET /contacts/{id} always 404s for a deleted contact and has no override.

How to fix it

  • For contacts, list with `?includeDeleted=true` to see whether the row is soft-deleted rather than gone. That is the only way to observe a deleted contact over this API.

Example response

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

{
  "type": "https://sealdeal.ai/errors/not-found",
  "title": "Not found",
  "status": 404,
  "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: 400 Bad request · 409 Conflict · 409 List has in-flight sequences · 422 Stage gate not met