n8n-nodes-sendit 1.0.1 → 1.0.3
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
CHANGED
|
@@ -45,14 +45,33 @@ npm install n8n-nodes-sendit
|
|
|
45
45
|
|
|
46
46
|
To use this node, you need a SendIt API key:
|
|
47
47
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
48
|
+
### Getting Your API Key
|
|
49
|
+
|
|
50
|
+
1. **Sign in** to [SendIt](https://sendit.infiniteappsai.com) using your email (magic link authentication)
|
|
51
|
+
2. Go to your [Dashboard](https://sendit.infiniteappsai.com/dashboard)
|
|
52
|
+
3. In the **API Keys** section, click **"Create New Key"**
|
|
53
|
+
4. Give it a name (e.g., "n8n Integration") and click Create
|
|
54
|
+
5. **Copy your API key immediately** - it's only shown once!
|
|
55
|
+
|
|
56
|
+
### API Key Format
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
sk_live_<32_character_string>
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Keys always start with `sk_live_` followed by 32 alphanumeric characters.
|
|
63
|
+
|
|
64
|
+
### Configuring in n8n
|
|
65
|
+
|
|
66
|
+
1. In n8n, go to **Credentials** → **New Credential** → **SendIt API**
|
|
67
|
+
2. Paste your API key
|
|
68
|
+
3. Click **Save**
|
|
69
|
+
|
|
70
|
+
> **Note:** Your API key is only shown once when created. If you lose it, you'll need to create a new one from the dashboard.
|
|
52
71
|
|
|
53
72
|
## Resources
|
|
54
73
|
|
|
55
|
-
- [SendIt Documentation](https://sendit.infiniteappsai.com/
|
|
74
|
+
- [SendIt Documentation](https://sendit.infiniteappsai.com/documentation.html)
|
|
56
75
|
- [n8n Community Nodes Documentation](https://docs.n8n.io/integrations/community-nodes/)
|
|
57
76
|
|
|
58
77
|
## License
|
|
@@ -5,7 +5,7 @@ class SendItApi {
|
|
|
5
5
|
constructor() {
|
|
6
6
|
this.name = 'sendItApi';
|
|
7
7
|
this.displayName = 'SendIt API';
|
|
8
|
-
this.documentationUrl = 'https://sendit.infiniteappsai.com/
|
|
8
|
+
this.documentationUrl = 'https://sendit.infiniteappsai.com/documentation.html';
|
|
9
9
|
this.properties = [
|
|
10
10
|
{
|
|
11
11
|
displayName: 'API Key',
|
|
@@ -16,7 +16,8 @@ class SendItApi {
|
|
|
16
16
|
},
|
|
17
17
|
default: '',
|
|
18
18
|
required: true,
|
|
19
|
-
|
|
19
|
+
placeholder: 'sk_live_your_api_key_here',
|
|
20
|
+
description: 'Your SendIt API key. Get it from Dashboard → API Keys → Create New Key. Format: sk_live_...',
|
|
20
21
|
},
|
|
21
22
|
];
|
|
22
23
|
this.authenticate = {
|