2022-08-17 08:50:24 -07:00
|
|
|
import { INodeProperties } from 'n8n-workflow';
|
2021-04-30 14:00:28 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const organizationOperations: INodeProperties[] = [
|
2021-04-30 14:00:28 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2021-04-30 14:00:28 -07:00
|
|
|
default: 'get',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
2022-08-17 08:50:24 -07:00
|
|
|
description: "Retrieve data on the logged-in user's organization",
|
|
|
|
action: "Get the logged-in user's organization",
|
2021-04-30 14:00:28 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['organization'],
|
2021-04-30 14:00:28 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|