GetItDoneGetItDone Docs
Public APIError codes
Public APIError codes

Resource not found (resource_not_found)

What the GetItDone API problem code resource_not_found (HTTP 404) means, what causes it, and how to fix it.

What it means

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

On this page