n8n-nodes-exact-online 0.1.6 → 0.1.7
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.
- package/README.md +21 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -18,6 +18,9 @@ Exact Online is an ERP solution that is offered as a cloud service. Most compani
|
|
18
18
|
The node can be installed with the community package feature. It can also be installed manually.
|
19
19
|
If you need more information on that, please refer to the n8n docs.
|
20
20
|
|
21
|
+
Make sure to restart n8n when you have installed the node.
|
22
|
+
> :warning: **Make sure to restart n8n when you have installed the node.**
|
23
|
+
|
21
24
|
## Setup instructions
|
22
25
|
|
23
26
|
To setup this node you will have to create an App in Exact online. Below there is a step by step guide on how to do this.
|
@@ -63,8 +66,22 @@ After you can Click connect / reconnect and it might give you a pop-up to login
|
|
63
66
|
|
64
67
|
All posible API requests were scraped from the Exact Online docs. This was used to create a config file. some quality of life features were added and more will be added in the future.
|
65
68
|
|
69
|
+
You can choose al Devisions your account has access to. And all data you have access to will be able to be retrieved.
|
70
|
+
Somtimes you do not retrieve any data that is because there is non or you do not have access.
|
71
|
+
|
72
|
+
you can use the dropdowns to select what you want to do.
|
73
|
+
|
74
|
+

|
75
|
+
|
76
|
+
when retrieving data you can add filters and choose what fields you want to include. You can both name field to be included and excluded. Some Api endpoints allow you to retrieve all fields when not selecting any and some require you to select the fields you want to include. By setting the slider to exclude the selected fields and not selecting any fields the node will automatically fetch all fields available.
|
77
|
+
|
78
|
+

|
66
79
|
|
67
80
|
|
81
|
+
when you want to create a new record or edit it, you will be able to add fields and select fields from a list of options for that specific resource.
|
82
|
+
|
83
|
+

|
84
|
+
|
68
85
|
## Using the scraper
|
69
86
|
|
70
87
|
- You do not need an account for the scraper.
|
@@ -74,6 +91,10 @@ All posible API requests were scraped from the Exact Online docs. This was used
|
|
74
91
|
- Start
|
75
92
|
- Done -> make sure to format the output file as this will improve the readability ;-)
|
76
93
|
|
94
|
+
## More info on the API
|
95
|
+
|
96
|
+
[Exact Online ref](https://start.exactonline.nl/docs/HlpRestAPIResources.aspx?SourceAction=10)
|
97
|
+
|
77
98
|
## License
|
78
99
|
|
79
100
|
[ChickenDance](https://github.com/bramkn/ExactOnline/blob/master/n8n-nodes-exact-online/LICENSE.md)
|
package/dist/package.json
CHANGED