-
Notifications
You must be signed in to change notification settings - Fork 22
/
template-freeform-invite.js
executable file
·55 lines (46 loc) · 1.35 KB
/
template-freeform-invite.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env node
/**
* to run template-freeform-invite applet from the project root folder type in your console:
* > node bin/template-freeform-invite <client_id> <client_secret> <username> <password> <template_id> <signer_email>
* <client_id>, <client_secret>, <username> <password>, <template_id>, <signer_email> - are required params
* options:
* --dev - request will be sent to developer sandbox API
*/
'use strict';
const args = process.argv.slice(2);
const flags = args.filter(arg => /^--/.test(arg));
const params = args.filter(arg => !/^--/.test(arg));
const [
clientId,
clientSecret,
username,
password,
templateId,
signerEmail,
] = params;
const dev = flags.includes('--dev');
const { promisify } = require('../utils');
const api = require('../lib')({
credentials: Buffer.from(`${clientId}:${clientSecret}`).toString('base64'),
production: !dev,
});
const {
oauth2: { requestToken: getAccessToken },
template: { invite: sendFreeformInvite },
} = api;
const getAccessToken$ = promisify(getAccessToken);
const sendFreeformInvite$ = promisify(sendFreeformInvite);
getAccessToken$({
username,
password,
})
.then(({ access_token: token }) => sendFreeformInvite$({
data: {
from: username,
to: signerEmail,
},
id: templateId,
token,
}))
.then(res => console.log(res))
.catch(err => console.error(err));