Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

convertkit

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

convertkit

  • 0.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Convertkit

Rubygem for the excellent Converkit. Allows you to get forms, courses, and subscribe people to your mailing lists.

Only supports the v2 API

Installation

Add this line to your application's Gemfile:

gem 'convertkit'

And then execute:

$ bundle

Or install it yourself as:

$ gem install convertkit

Usage

First, configure your client like so:

client = Convertkit::Client.new(key: "apikey")

Get list of forms

forms = client.forms

Will give you back something like this (a ConvertKit::Form object)

#<ConvertKit::Form:0x007fc5020ae460
	@client=
		#<ConvertKit::Client:0x007fc502846830
			@key="xxxx",
			@uri="https://api.convertkit.com",
			@version=2>,
	@created_at="2014-12-02T14:15:47Z",
	@details="https://api.convertkit.com/forms/4812558?k=xxx&v=2",
	@embed="https://api.convertkit.com/forms/4812558/embed?k=xxx&v=2",
	@id=481,
	@name="10 days to a better gem",
	@subscriber_count=4,
	@updated_at="2014-12-12T13:26:14Z">

Subscribe to a form

form = client.form(4)
form.subscribe(email: "email@email.com", fname: "name", course_opted: true)

Form details

form = client.form(4)

Get Courses

courses = client.courses

Get Course Details

course = client.courses(4)

Contributing

  1. Fork it ( https://github.com/stevencorona/convertkit/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

FAQs

Package last updated on 27 Dec 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc