Skip to content

NotFound

Type: response

Description

Requested resource not found

TypeScript Definition

typescript
NotFound: {{
            headers: {
                [name: string]: unknown;
            };
            content: {
                "application/json": {
                    message: string;
                    success: boolean;
                    code: string;
                };
            };
        };
        /** @description Not authorized for given operation on the Resource */
}

OpenAPI Schema

json
{
  "description": "Requested resource not found",
  "content": {
    "application/json": {
      "schema": {
        "type": "object",
        "required": [
          "message",
          "success",
          "code"
        ],
        "properties": {
          "message": {
            "type": "string",
            "x-speakeasy-error-message": true
          },
          "success": {
            "type": "boolean"
          },
          "code": {
            "type": "string"
          }
        }
      }
    }
  }
}

Auto-generated from OpenAPI spec and TypeScript definitions

Last updated: