Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .mise.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[settings]
# needed for installing tools using go directly (go forge) as that is an experimental feature at the moment
experimental = true
fetch_remote_versions_timeout = '120s'

[tools]
node = '22.22.0'
6 changes: 4 additions & 2 deletions examples/getCustomerByEmail.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ const campaignId = require('./config').campaignId;
const segmentId = require('./config').segmentId;
const cio = new APIClient(appKey, { region: RegionUS });

const email = "hello@world.com"
const email = 'hello@world.com';

cio.getCustomersByEmail(email);
cio.getCustomersByEmail(email).then((result) => {
console.log(result);
});
Loading
Loading