module Paperdrive::Client::Recents

Instance methods related to Recents to embed into Paperdrive::Client
arguments are compatible with the Pipedribe API.

@see developers.pipedrive.com/docs/api/v1/#!/Recents

Public Instance Methods

recents(**args) click to toggle source
GET

Get recents

@see developers.pipedrive.com/docs/api/v1/#!/Recents/get_recents @return [Paperdrive::Response]

# File lib/paperdrive/client/recents.rb, line 18
def recents(**args)
  params = parameters(args) do
    required_params :since_timestamp
    optional_params :since_timestamp, :items, :start, :limit
  end
  request(:get, 'recents', params)
end