Integrations
Take a deeper dive into creating channels and integrations.
Last updated
Was this helpful?
Take a deeper dive into creating channels and integrations.
Last updated
Was this helpful?
Was this helpful?
export type ChannelOptions = {
username?: string;
headers?: any;
authType?: 'OAUTH' | 'BASIC' | 'TOKEN';
tokenUrl?: string;
clientId?: string;
secretName?: string;
scope?: string;
grantType?: string;
jsonata?: string;
};
export type SftChannelOptions = {
tempFolder?: string;
filePrefix?: string;
host?: string;
username?: string;
port?: number;
secretName?: string;
};
Example:
{
"username": "myName",
"tokenUrl": "tokenUrl.here"
}