Kong/insomnia · error · Error

Workspace not found for ${meta.workspaceId}

Error message

Workspace not found for ${meta.workspaceId}

What it means

Error "Workspace not found for ${meta.workspaceId}" thrown in Kong/insomnia.

Source

Thrown at packages/insomnia/src/common/templating/local-template-tags.ts:899

        },
      ],

      async run(context, attribute, name, folderIndex) {
        const { meta } = context;

        if (!meta.requestId || !meta.workspaceId) {
          return null;
        }

        const request = await context.util.models.request.getById(meta.requestId);
        const workspace = await context.util.models.workspace.getById(meta.workspaceId);

        if (!request) {
          throw new Error(`Request not found for ${meta.requestId}`);
        }

        if (!workspace) {
          throw new Error(`Workspace not found for ${meta.workspaceId}`);
        }

        if (attribute === 'url') {
          const rendered = await context.util.render(request.url);
          const url = new URL(rendered || '', 'http://localhost');
          for (const p of request.parameters) {
            const name = await context.util.render(p.name);
            const value = await context.util.render(p.value);
            if (name && value) {
              url.searchParams.append(name, value);
            }
          }
          return url;
        }
        if (attribute === 'cookie') {
          if (!name) {
            throw new Error('No cookie specified');
          }

View on GitHub (pinned to d9bb2b0142)

When it happens

Trigger: Thrown at packages/insomnia/src/common/templating/local-template-tags.ts:899 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of Kong/insomnia@d9bb2b0142 (2026-08-26). Data as JSON: /api/errors/20b6d95a5c875fbb. Report an issue: GitHub.