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:
Cursor Agent 2025-07-31 12:19:03 +00:00
commit c56f70b43d
4 changed files with 14 additions and 14 deletions

View file

@ -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({