Skip to content
This repository has been archived by the owner on Aug 31, 2022. It is now read-only.

Latest commit

 

History

History
36 lines (24 loc) · 1.12 KB

README.md

File metadata and controls

36 lines (24 loc) · 1.12 KB

Hubspot API wrapper in Elixir

Hex.pm Hex.pm Hex.pm Build Status

[Hex] [Docs]

Examples

Hubspot.Contacts.all
#=> %Hubspot.HTTP.Request{endpoint: "/contacts/v1/lists/all/contacts/all",
#     method: :get, query: [], body: ""}

Hubspot.Contacts.all |> Hubspot.request
#=> {:ok, response}

Hubspot.Contacts.all([count: 10, vidOffset: 100]) |> Hubspot.request
#=> {:ok, response}

Installation

If available in Hex, the package can be installed as:

  1. Add hubspotex to your list of dependencies in mix.exs:
def deps do
  [{:hubspotex, "~> 0.0.6"}]
end