action n_auth_create_api_key { label: "Create a new API key." description: "Create a new API key. Required permission: global 'servers'." provider: n_auth method: POST path: "/apikeys/" encoding: json input: { type: "object" properties: { description: { type: "string" } } required: ["description"] additionalProperties: false } output: { type: "object" additionalProperties: true } }