You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26-2Lines changed: 26 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@
4
4
5
5
Combell API client for node.js. [Combell.be](https://combell.be) is a Belgian hosting provider used by a client of mine. When I noticed the API ( [documented here](https://api.combell.com/v2/documentation) ) while working in the control panel I finally found an interesting, personal, learning project.
6
6
7
-
I hope my effort proofs to be useful for other node.js projects or as a learning resource.
8
-
-- Bram Plessers
7
+
I hope my effort proofs to be useful for other node.js projects or as a learning resource.
8
+
-- Bram Plessers
9
9
10
10
## Example Usage
11
11
@@ -16,6 +16,30 @@ I hope my effort proofs to be useful for other node.js projects or as a learning
16
16
- copy `.env.example` to `.env` and edit it's contents ( [get your api key here](https://my.combell.com) )
17
17
- run the main entry point with `yarn run combell`
18
18
19
+
```bash
20
+
$ yarn run combell
21
+
22
+
[ { id: 012345, identifier: 'some.domain.tld' },
23
+
{ id: 012345, identifier: 'some.domain.tld' },
24
+
{ id: 012345, identifier: 'some.domain.tld' },
25
+
{ id: 012345, identifier: 'some.domain.tld' },
26
+
{ id: 012345, identifier: 'some.domain.tld' },
27
+
{ id: 012345, identifier: 'some.domain.tld' },
28
+
{ id: 012345, identifier: 'some.domain.tld' },
29
+
{ id: 012345, identifier: 'some.domain.tld' },
30
+
{ id: 012345, identifier: 'some.domain.tld' },
31
+
{ id: 012345, identifier: 'some.domain.tld' },
32
+
{ id: 012345, identifier: 'some.domain.tld' },
33
+
{ id: 012345, identifier: 'some.domain.tld' },
34
+
{ id: 012345, identifier: 'some.domain.tld' },
35
+
{ id: 012345, identifier: 'some.domain.tld' },
36
+
{ id: 012345, identifier: 'some.domain.tld' },
37
+
{ id: 012345, identifier: 'some.domain.tld' } ]
38
+
✨ Done in 0.66s.
39
+
```
40
+
41
+
For an example integration for your project check [`examples/node/index.js`](https://github.com/webdevotion/combell-api/blob/778d20a94b061400ca59658dd9956fc2caa1587c/examples/node/index.js).
42
+
19
43
## Notice
20
44
21
45
The library only allows calling `/v2/accounts/index`in the current release.
0 commit comments