Compare commits
1 Commits
master
...
enhancemen
Author | SHA1 | Date |
---|---|---|
|
15d8eaedfd |
10
README.md
10
README.md
|
@ -29,6 +29,16 @@ We created this N8N module so that we could internet our internal tools together
|
||||||
- Get (single) Invoice
|
- Get (single) Invoice
|
||||||
- Update Invoice
|
- Update Invoice
|
||||||
- Delete Invoice
|
- Delete Invoice
|
||||||
|
- Company
|
||||||
|
- Create Company
|
||||||
|
- Get (single) Company
|
||||||
|
- Update Company
|
||||||
|
- Delete Company
|
||||||
|
- People
|
||||||
|
- Create People
|
||||||
|
- Get (single) Person
|
||||||
|
- Update People
|
||||||
|
- Delete People
|
||||||
|
|
||||||
This module uses Plutio API version 1.10
|
This module uses Plutio API version 1.10
|
||||||
|
|
||||||
|
|
|
@ -1406,8 +1406,7 @@ export class Plutio implements INodeType {
|
||||||
});
|
});
|
||||||
body.people = metadata;
|
body.people = metadata;
|
||||||
}
|
}
|
||||||
responseData = body;
|
responseData = await plutioApiRequest.call(this, 'PUT', '/companies', body);
|
||||||
// responseData = await plutioApiRequest.call(this, 'PUT', '/companies', body);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get company.
|
// Get company.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "n8n-nodes-plutio",
|
"name": "n8n-nodes-plutio",
|
||||||
"version": "0.1.1",
|
"version": "0.1.0",
|
||||||
"description": "Custom n8n node module for Plutio.",
|
"description": "Custom n8n node module for Plutio.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"n8n-community-node-package"
|
"n8n-community-node-package"
|
||||||
|
|
Loading…
Reference in New Issue