Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
// Display's word hello in browser console.
console.log('hello');

// Show in the console object data from crm
const payload = await api.crmManager.getPayload();
console.log(`This is data from the payload ${payload}`);

...