Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/Kitemaker/descriptions/OrganizationDescription.ts

25 lines
497 B
TypeScript
Raw Normal View History

2025-09-08 04:48:28 +08:00
import type { INodeProperties } from 'n8n-workflow';
export const organizationOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
default: 'get',
options: [
{
name: 'Get',
value: 'get',
description: "Retrieve data on the logged-in user's organization",
action: "Get the logged-in user's organization",
},
],
displayOptions: {
show: {
resource: ['organization'],
},
},
},
];