Files
Automata/packages/nodes-base/nodes/SyncroMSP/v1/actions/contact/get/description.ts
Michael Kret 91d7e16c81 n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

19 lines
362 B
TypeScript

import { ContactProperties } from '../../Interfaces';
export const contactGetDescription: ContactProperties = [
{
displayName: 'Contact ID',
name: 'contactId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: ['contact'],
operation: ['get'],
},
},
default: '',
description: 'Get specific contact by ID',
},
];