WebService::DataDog::User - Interface to User functions in DataDog's API.
Version 1.0.0
This module allows you interact with the user endpoint of the DataDog API.
Per DataDog: "You can invite users to join DataDog using the API."
Invite users to join the Datadog service.
my $user = $datadog->build('User'); $user->invite( emails => $email_list, # A list of 1+ email addresses ); Example: $user->invite( emails => [ 'user@example.com', 'user2@emailme.com' ] );
Parameters:
List of email addresses that should receive invitations.