ballerinax/hubspot.crm.product Ballerina library

2.3.1

Overview

This is a generated connector from HubSpot OpenAPI specification.

This API provides access to collections of CRM objects, which return a map of property names to values. Each object type has its own set of default properties, which can be found by exploring the CRM Object Properties API.

Prerequisites

Before using this connector in your Ballerina application, complete the following:

  • Create a HubSpot developer account
  • Obtain tokens
    • Use this guide to obtain the credentials which are needed to create the <CLIENT_ID> and <CLIENT_SECRET>

Quickstart

To use the HubSpot CRM Products connector in your Ballerina application, update the .bal file as follows:

Step 1 - Import connector

First, import the ballerinax/hubspot.crm.product module into the Ballerina project.

Copy
import ballerinax/hubspot.crm.product;

Step 2 - Create a new connector instance

You can now make the connection configuration using the access token.

Copy
product:ClientConfig clientConfig = {
    auth : {
        token: <ACCESS_TOKEN>
    }
};

product:Client baseClient = check new Client(clientConfig);

Step 3 - Invoke connector operation

  1. Create a product instance
Copy
product:SimplePublicObjectInput product = {
    properties : {
        "description": "Onboarding service for data product",
        "hs_cost_of_goods_sold": "600.00",
        "hs_recurring_billing_period": "P12M",
        "hs_sku": "191902",
        "name": "Implementation Service ",
        "price": "6000.00"
    }      
};

product:SimplePublicObject|error bEvent = baseClient->create(product);

if (bEvent is product:SimplePublicObject) {
    log:printInfo("Created the product" + bEvent.toString());
} else {
    log:printError(msg = bEvent.message());
}
  1. List product instances
Copy
product:SimplePublicObjectWithAssociationsArray|error bEvent = baseClient->getPage();

if (bEvent is product:SimplePublicObjectWithAssociationsArray) {
    log:printInfo("Product list" + bEvent.toString());
} else {
    log:printError(msg = bEvent.message());
}
  1. Use bal run command to compile and run the Ballerina program

Import

import ballerinax/hubspot.crm.product;Copy

Metadata

Released date: 12 months ago

Version: 2.3.1

License: Apache-2.0


Compatibility

Platform: any

Ballerina version: 2201.4.1

GraalVM compatible: Yes


Pull count

Total: 1

Current verison: 1


Weekly downloads


Source repository


Keywords

Sales & CRM/Customer Relationship Management

Cost/Freemium


Contributors

Other versions

See more...