Versions Compared

Key

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

...

Returns "true" if the operation succeeded.

Examples

Example 1

Add multiple customers to a a service desk with id of 1.

Code Block
languagejs
return addCustomersToServiceDesk(1, {"customer1","customer2"});

Example 2

Add a single customer to a a service desk with id of 1.

Code Block
languagejs
return addCustomersToServiceDesk(1, "customer");

...