action openapi_delete_api { label: "Deletes the specified API" description: "" provider: openapi method: DELETE path: "/apis/{owner}/{api}" encoding: json input: { type: "object" properties: { api: { type: "string" } owner: { type: "string" } } required: ["api", "owner"] additionalProperties: false } output: { type: "object" additionalProperties: true } }