n8n-nodes-aivencerealtycrm 1.8.4 → 1.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1914,7 +1914,7 @@ class AivenceRealty {
|
|
|
1914
1914
|
}
|
|
1915
1915
|
responseData = await this.helpers.httpRequest({
|
|
1916
1916
|
method: 'GET',
|
|
1917
|
-
url: `${baseUrl}/api/v1/
|
|
1917
|
+
url: `${baseUrl}/api/v1/propiedades`,
|
|
1918
1918
|
qs,
|
|
1919
1919
|
json: true,
|
|
1920
1920
|
});
|
|
@@ -1922,7 +1922,7 @@ class AivenceRealty {
|
|
|
1922
1922
|
else if (operation === 'list') {
|
|
1923
1923
|
responseData = await this.helpers.httpRequest({
|
|
1924
1924
|
method: 'GET',
|
|
1925
|
-
url: `${baseUrl}/api/v1/
|
|
1925
|
+
url: `${baseUrl}/api/v1/propiedades`,
|
|
1926
1926
|
json: true,
|
|
1927
1927
|
});
|
|
1928
1928
|
}
|
|
@@ -1930,7 +1930,7 @@ class AivenceRealty {
|
|
|
1930
1930
|
const propertyId = this.getNodeParameter('propertyId', i);
|
|
1931
1931
|
responseData = await this.helpers.httpRequest({
|
|
1932
1932
|
method: 'GET',
|
|
1933
|
-
url: `${baseUrl}/api/v1/
|
|
1933
|
+
url: `${baseUrl}/api/v1/propiedades/${propertyId}`,
|
|
1934
1934
|
json: true,
|
|
1935
1935
|
});
|
|
1936
1936
|
}
|