Hi,
I’ve been scratching my head at this one for a while; i’ve got this open api spec:
info:
title: Safe to run
description: The safe to run API can be used to request a list of a users organisations
version: "1.0"
servers:
- url: https://app.safetorun.com
paths:
/organisation:
get:
summary: Returns a list of all organisations a user has access to
operationId: listOrganisations
parameters:
- name: JWT
in: cookie
required: true
schema:
type: string
responses:
"200":
description: A list of all orgs is returned
content:
application/json:
schema:
$ref: '#/components/schemas/OrganisationResponse'
But I get this error:
I apologize for the confusion, but it seems there was an error in processing the request. The function “listOrganisations” is not recognized.
Any advise?