n8n-nodes-imobzi
Version:
Nodes para integração com a API da Imobzi no n8n
31 lines • 908 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImobziApi = void 0;
class ImobziApi {
constructor() {
this.name = 'imobziApi';
this.displayName = 'Imobzi API';
this.documentationUrl = 'https://developer.imobzi.com/';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: {
password: true,
},
default: '',
description: 'Sua chave de API da Imobzi',
},
];
this.test = {
request: {
baseURL: 'https://api.imobzi.app',
url: '/v1/properties',
method: 'GET',
},
};
}
}
exports.ImobziApi = ImobziApi;
//# sourceMappingURL=ImobziApi.credentials.js.map