Sha256: 4d2e9dcf1b694bfb38ac30ef22a4049ababa7728efbcf836b5c675cfbc82f8d4
Contents?: true
Size: 979 Bytes
Versions: 11
Compression:
Stored size: 979 Bytes
Contents
# frozen_string_literal: true module Mailersend # Recipients endpoint from MailerSend API. class Recipients attr_accessor :client, :page, :limit, :recipient_id def initialize(client = Mailersend::Client.new) @client = client @page = page @limit = limit @recipient_id = recipient_id end def list(page: nil, limit: nil) hash = { "page" => page, "limit" => limit } response = client.http.get(URI::HTTPS.build(host: API_BASE_HOST, path: "/v1/recipients", query: URI.encode_www_form(hash))) puts response end def single(recipient_id:) response = client.http.get("#{API_URL}/recipients/#{recipient_id}") puts response end def delete(recipient_id:) response = client.http.delete("#{API_URL}/recipients/#{recipient_id}") puts response end end end
Version data entries
11 entries across 11 versions & 1 rubygems