Skip to main content

account.getContactSignUpNotification

Whether the user will receive notifications when contacts sign up

func (c *Client) AccountGetContactSignUpNotification(ctx context.Context) (bool, error)

Calling this method

client.Run(ctx, func(ctx context.Context) error {
api := client.API()

res, err := api.AccountGetContactSignUpNotification(ctx)
if err != nil {
return err
}
_ = res // bool
return nil
})

Parameters

This method takes no parameters.

Returns

bool

References