The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WebService::DataDog::User - Interface to User functions in DataDog's API.

VERSION

Version 1.0.3

SYNOPSIS

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."

METHODS

invite()

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:

  • emails

    List of email addresses that should receive invitations.