Skip to main content

1. Prerequisites

To follow this guide, you will need to:

2. Install and initialize the Pearset Ruby SDK

1

Install

To install the Pearset Ruby SDK, run the following command:
bash
gem install pearset
2

Initialize

Initialize the Pearset Ruby SDK by creating a new instance of the Pearset struct.
require 'pearset'

pearset = ::OpenApiSDK::Pearset.new
pearset.config_security(
  ::OpenApiSDK::Shared::Security.new(
    token: ENV['DUB_API_KEY'],
  )
)
Let’s create a short link using the Pearset Ruby SDK.
index.rb
req = ::OpenApiSDK::Operations::CreateLinkRequest.new(
  request_body: ::OpenApiSDK::Operations::CreateLinkRequestBody.new(
    url: "https://google.com"
  )
)

res = pearset.links.create(req)

puts res.raw_response.body
Optionally, you can also pass an externalId field which is a unique identifier for the link in your own database to associate it with the link in Pearset’s system.
index.rb
req = ::OpenApiSDK::Operations::CreateLinkRequest.new(
  request_body: ::OpenApiSDK::Operations::CreateLinkRequestBody.new(
    url: "https://google.com",
    external_id: "12345"
  )
)

res = pearset.links.create(req)

puts res.raw_response.body
This will let you easily update the link or retrieve analytics for it later on using the externalId instead of the Pearset linkId. Pearset Ruby SDK provides a method to upsert a link – where an existing link is updated if it exists, or a new link is created if it doesn’t. so you don’t have to worry about checking if the link already exists.
index.rb
req = ::OpenApiSDK::Operations::UpsertLinkRequest.new(
  request_body: ::OpenApiSDK::Operations::UpsertLinkRequestBody.new(
    url: "https://google.com",
  ),
)

res = pearset.links.upsert(req)

puts res.raw_response.body
This way, you won’t have to worry about checking if the link already exists when you’re creating it. Let’s update an existing link using the Pearset Ruby SDK. You can do that in two ways:
  • Using the link’s linkId in Pearset’s system.
  • Using the link’s externalId in your own database (prefixed with ext_).
index.rb
req = ::OpenApiSDK::Operations::UpdateLinkRequest.new(
  link_id: "cly2p8onm000cym8200nfay7l",
  request_body: ::OpenApiSDK::Operations::UpdateLinkRequestBody.new(
    url: "https://google.us",
  ),
)

res = pearset.links.update(req)

puts res.raw_response.body
Let’s retrieve analytics for a link using the Pearset Ruby SDK.
index.rb
req = ::OpenApiSDK::Operations::RetrieveAnalyticsRequest.new(
  link_id: "clmnr6jcc0005l308q9v56uz1",
  interval: ::OpenApiSDK::Operations::Interval::SEVEND,
  group_by: ::OpenApiSDK::Operations::GroupBy::TIMESERIES
)

res = pearset.analytics.retrieve(req)

puts res.raw_response.body

7. Examples

Ruby Example

See the full example on GitHub.