n8n-nodes-base
Version:
Base nodes of n8n
34 lines (30 loc) • 837 B
text/typescript
/**
* Action Network Node - Version 1
* Discriminator: resource=signature, operation=get
*/
interface Credentials {
actionNetworkApi: CredentialReference;
}
export type ActionNetworkV1SignatureGetParams = {
resource: 'signature';
operation: 'get';
/**
* ID of the petition whose signature to retrieve
*/
petitionId?: string | Expression<string> | PlaceholderValue;
/**
* ID of the signature to retrieve
*/
signatureId?: string | Expression<string> | PlaceholderValue;
/**
* Whether to return a simplified version of the response instead of the raw data
* @default true
*/
simple?: boolean | Expression<boolean>;
};
export type ActionNetworkV1SignatureGetNode = {
type: 'n8n-nodes-base.actionNetwork';
version: 1;
credentials?: Credentials;
config: NodeConfig<ActionNetworkV1SignatureGetParams>;
};