RESOURCE_NOT_FOUND

From the API service's point of view each API URL represents a resource and an action for the resource.

The parent resource is the resource, that is specified in the API URI to the right of the current resource, e.g., /api/v1/<parent>/<id>/current.

Reason

  • The resource with such name (under such URI) does not seem to exist
  • The parent resource of the current one does not seem to exist

Solution

  • Make sure, that all the names used in the resource URI are correct
  • Make sure, that the parent resource of the current one still exists
  • Make sure, that the resource with the specified ID exists

Example

{
    "status": 404,
    "errors": [
        {
            "code": "RESOURCE_NOT_FOUND",
            "message": "Resource does not exist or has been removed",
            "more_info": "https://developer.kayako.com/api/v1/reference/errors/RESOURCE_NOT_FOUND"
        }
    ]
}