Exemple #1
0
        static void Main(string[] args)
        {
            Deals.Example();

            Companies.Example();

            Contacts.Example();

            CompanyProperties.Example();

            EmailSubscriptions.Example();
        }
Exemple #2
0
        static void Main(string[] args)
        {
            /**
             * Initialize the API with your API Key
             * You can find or generate this under Integrations -> HubSpot API key
             */
            var api = new HubSpotApi("YOUR API KEY HERE");

            Deals.Example(api);

            Companies.Example(api);

            Contacts.Example(api);

            CompanyProperties.Example(api);

            EmailSubscriptions.Example(api);
        }