-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(Gong Node): New node #10777
feat(Gong Node): New node #10777
Conversation
Hey @feelgood-interface, Thanks for the PR, We have created "GHC-224" as the internal reference to get this reviewed. One of us will be in touch if there are any changes needed, in most cases this is normally within a couple of weeks but it depends on the current workload of the team. |
async function ( | ||
this: IExecuteSingleFunctions, | ||
data: INodeExecutionData[], | ||
response: IN8nHttpFullResponse, | ||
): Promise<INodeExecutionData[]> { | ||
if (response.statusCode === 404) { | ||
throw new NodeApiError(this.getNode(), response as unknown as JsonObject, { | ||
message: "The required user doesn't match any existing one", | ||
description: | ||
"Double-check the value in the parameter 'User to Get' and try again", | ||
}); | ||
} | ||
return await sendErrorPostReceive.call(this, data, response); | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
probably better to extract to a GenericFunctions, and in other places too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @feelgood-interface for the PR, tested manually and it works 🎉
left a few comments, nothing major just some refactoring and minor corrections
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🎉
Got released with |
Summary
Add new Gong node.
Related Linear tickets, Github issues, and Community forum posts
https://linear.app/n8n/issue/NODE-1795/gong-node
Gong API Documentation