mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-30 06:42:25 -05:00
Update ZapSign domain from .com to .co in URLs and contact info
Co-authored-by: andre <andre@zapsign.com.br>
This commit is contained in:
parent
b76fd3d7f3
commit
c56f70b43d
4 changed files with 14 additions and 14 deletions
|
|
@ -137,8 +137,8 @@ export class ZapSignTrigger implements INodeType {
|
|||
|
||||
const credentials = await this.getCredentials('zapSignApi');
|
||||
const baseUrl = credentials.environment === 'sandbox'
|
||||
? 'https://sandbox.api.zapsign.com'
|
||||
: 'https://api.zapsign.com';
|
||||
? 'https://sandbox.api.zapsign.co'
|
||||
: 'https://api.zapsign.co';
|
||||
|
||||
try {
|
||||
const response = await this.helpers.request({
|
||||
|
|
@ -171,8 +171,8 @@ export class ZapSignTrigger implements INodeType {
|
|||
|
||||
const credentials = await this.getCredentials('zapSignApi');
|
||||
const baseUrl = credentials.environment === 'sandbox'
|
||||
? 'https://sandbox.api.zapsign.com'
|
||||
: 'https://api.zapsign.com';
|
||||
? 'https://sandbox.api.zapsign.co'
|
||||
: 'https://api.zapsign.co';
|
||||
|
||||
const body = {
|
||||
url: webhookUrl,
|
||||
|
|
@ -209,8 +209,8 @@ export class ZapSignTrigger implements INodeType {
|
|||
if (webhookData.webhookId !== undefined) {
|
||||
const credentials = await this.getCredentials('zapSignApi');
|
||||
const baseUrl = credentials.environment === 'sandbox'
|
||||
? 'https://sandbox.api.zapsign.com'
|
||||
: 'https://api.zapsign.com';
|
||||
? 'https://sandbox.api.zapsign.co'
|
||||
: 'https://api.zapsign.co';
|
||||
|
||||
try {
|
||||
await this.helpers.request({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue