Get It Done Logo
Get It Done
HTTP 404resource_not_found

Resource not found

No resource with that id exists inside the credential’s organization.

Likely causes

  • The id belongs to another organization (there is no cross-org existence oracle — you get 404, not 403).
  • The id is mistyped, or the resource was deleted.

How to fix

  • Confirm the id was returned by a list/get call on the SAME credential.
  • Use the public short id (e.g. `T-123`) for tasks — internal UUIDs are never accepted.

Example response

application/problem+json
{
  "type": "https://nowgetitdone.com/docs/api/problems/resource-not-found",
  "title": "Resource not found",
  "status": 404,
  "code": "resource_not_found",
  "request_id": "req_a1b2c3d4"
}

The type field resolves to this page: https://nowgetitdone.com/docs/api/problems/resource-not-found

Related