repo
stringlengths
5
92
file_url
stringlengths
80
287
file_path
stringlengths
5
197
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:37:27
2026-01-04 17:58:21
truncated
bool
2 classes
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/companies/basic_api_spec.rb
spec/discovery/crm/companies/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Companies::BasicApi' do subject(:basic_api) { Hubspot::Client.new(access_token: 'test').crm.companies.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:merge) } it { is_expected.to respond_to(:update) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/companies/search_api_spec.rb
spec/discovery/crm/companies/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Companies::SearchApi' do subject(:search_api) { Hubspot::Client.new(access_token: 'test').crm.companies.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/companies/batch_api_spec.rb
spec/discovery/crm/companies/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Companies::BatchApi' do subject(:batch_api) { Hubspot::Client.new(access_token: 'test').crm.companies.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/products/basic_api_spec.rb
spec/discovery/crm/products/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Products::BasicApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.products.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:update) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/products/search_api_spec.rb
spec/discovery/crm/products/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Products::SearchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.products.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/products/batch_api_spec.rb
spec/discovery/crm/products/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Products::BatchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.products.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/commerce/client_spec.rb
spec/discovery/crm/commerce/client_spec.rb
require 'spec_helper' describe 'Hubspot::Client' do subject(:client) { Hubspot::Client.new(access_token: 'test').crm.commerce } it { is_expected.to respond_to(:invoices) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/commerce/invoices/basic_api_spec.rb
spec/discovery/crm/commerce/invoices/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Commerce::Invoices::BasicApi' do subject(:BasicApi) { Hubspot::Client.new(access_token: 'test').crm.commerce.invoices.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:update) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/commerce/invoices/search_api_spec.rb
spec/discovery/crm/commerce/invoices/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Commerce::Invoices::SearchApi' do subject(:SearchApi) { Hubspot::Client.new(access_token: 'test').crm.commerce.invoices.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/commerce/invoices/batch_api_spec.rb
spec/discovery/crm/commerce/invoices/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Commerce::Invoices::BatchApi' do subject(:BatchApi) { Hubspot::Client.new(access_token: 'test').crm.commerce.invoices.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/contacts/basic_api_spec.rb
spec/discovery/crm/contacts/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Contacts::BasicApi' do subject(:basic_api) { Hubspot::Client.new(access_token: 'test').crm.contacts.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:merge) } it { is_expected.to respond_to(:update) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/contacts/search_api_spec.rb
spec/discovery/crm/contacts/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Contacts::SearchApi' do subject(:search_api) { Hubspot::Client.new(access_token: 'test').crm.contacts.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/contacts/batch_api_spec.rb
spec/discovery/crm/contacts/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Contacts::BatchApi' do subject(:batch_api) { Hubspot::Client.new(access_token: 'test').crm.contacts.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/timeline/templates_api_spec.rb
spec/discovery/crm/timeline/templates_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Timeline::TemplatesApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.timeline.templates_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_all) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:update) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/timeline/tokens_api_spec.rb
spec/discovery/crm/timeline/tokens_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Timeline::TokensApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.timeline.tokens_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:update) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/timeline/events_api_spec.rb
spec/discovery/crm/timeline/events_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Timeline::EventsApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.timeline.events_api } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:create_batch) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_detail_by_id) } it { is_expected.to respond_to(:get_render_by_id) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/client_spec.rb
spec/discovery/crm/objects/client_spec.rb
require 'spec_helper' describe 'Hubspot::Client' do subject(:client) { Hubspot::Client.new(access_token: 'test').crm.objects } it { is_expected.to respond_to(:calls) } it { is_expected.to respond_to(:communications) } it { is_expected.to respond_to(:emails) } it { is_expected.to respond_to(:feedback_submissions) } it { is_expected.to respond_to(:goals) } it { is_expected.to respond_to(:leads) } it { is_expected.to respond_to(:meetings) } it { is_expected.to respond_to(:notes) } it { is_expected.to respond_to(:postal_mail) } it { is_expected.to respond_to(:tasks) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/basic_api_spec.rb
spec/discovery/crm/objects/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::BasicApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:get_all) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/search_api_spec.rb
spec/discovery/crm/objects/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::SearchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/batch_api_spec.rb
spec/discovery/crm/objects/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::BatchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/tasks/basic_api_spec.rb
spec/discovery/crm/objects/tasks/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Tasks::BasicApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.tasks.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/tasks/search_api_spec.rb
spec/discovery/crm/objects/tasks/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Tasks::SearchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.tasks.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/tasks/batch_api_spec.rb
spec/discovery/crm/objects/tasks/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Tasks::BatchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.tasks.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/deal_splits/batch_api_spec.rb
spec/discovery/crm/objects/deal_splits/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::DealSplits::BatchApi' do subject(:BatchApi) { Hubspot::Client.new(access_token: 'test').crm.objects.deal_splits.batch_api } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/feedback_submissions/basic_api_spec.rb
spec/discovery/crm/objects/feedback_submissions/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::FeedbackSubmissions::BasicApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.feedback_submissions.basic_api } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/feedback_submissions/search_api_spec.rb
spec/discovery/crm/objects/feedback_submissions/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::FeedbackSubmissions::SearchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.feedback_submissions.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/feedback_submissions/batch_api_spec.rb
spec/discovery/crm/objects/feedback_submissions/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::FeedbackSubmissions::BatchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.feedback_submissions.batch_api } it { is_expected.to respond_to(:read) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/postal_mail/basic_api_spec.rb
spec/discovery/crm/objects/postal_mail/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::PostalMail::BasicApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.postal_mail.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/postal_mail/search_api_spec.rb
spec/discovery/crm/objects/postal_mail/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::PostalMail::SearchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.postal_mail.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/postal_mail/batch_api_spec.rb
spec/discovery/crm/objects/postal_mail/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::PostalMail::BatchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.postal_mail.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/emails/basic_api_spec.rb
spec/discovery/crm/objects/emails/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Emails::BasicApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.emails.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/emails/search_api_spec.rb
spec/discovery/crm/objects/emails/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Emails::SearchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.emails.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/emails/batch_api_spec.rb
spec/discovery/crm/objects/emails/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Emails::BatchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.emails.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/leads/basic_api_spec.rb
spec/discovery/crm/objects/leads/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Leads::BasicApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.leads.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:update) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/leads/search_api_spec.rb
spec/discovery/crm/objects/leads/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Leads::SearchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.leads.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/leads/batch_api_spec.rb
spec/discovery/crm/objects/leads/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Leads::BatchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.leads.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update)} it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/calls/basic_api_spec.rb
spec/discovery/crm/objects/calls/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Calls::BasicApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.calls.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/calls/search_api_spec.rb
spec/discovery/crm/objects/calls/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Calls::SearchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.calls.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/calls/batch_api_spec.rb
spec/discovery/crm/objects/calls/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Calls::BatchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.calls.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/taxes/basic_api_spec.rb
spec/discovery/crm/objects/taxes/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Taxes::BasicApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.taxes.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:update) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/taxes/search_api_spec.rb
spec/discovery/crm/objects/taxes/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Taxes::SearchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.taxes.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/taxes/batch_api_spec.rb
spec/discovery/crm/objects/taxes/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Taxes::BatchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.taxes.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/communications/basic_api_spec.rb
spec/discovery/crm/objects/communications/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Communications::BasicApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.communications.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/communications/search_api_spec.rb
spec/discovery/crm/objects/communications/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Communications::SearchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.communications.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/communications/batch_api_spec.rb
spec/discovery/crm/objects/communications/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Communications::BatchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.communications.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/meetings/basic_api_spec.rb
spec/discovery/crm/objects/meetings/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Meetings::BasicApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.meetings.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/meetings/search_api_spec.rb
spec/discovery/crm/objects/meetings/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Meetings::SearchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.meetings.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/meetings/batch_api_spec.rb
spec/discovery/crm/objects/meetings/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Meetings::BatchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.meetings.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/goals/basic_api_spec.rb
spec/discovery/crm/objects/goals/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Goals::BasicApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.goals.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:update) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/goals/search_api_spec.rb
spec/discovery/crm/objects/goals/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Goals::SearchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.goals.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/goals/batch_api_spec.rb
spec/discovery/crm/objects/goals/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Goals::BatchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.goals.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/notes/basic_api_spec.rb
spec/discovery/crm/objects/notes/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Notes::BasicApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.notes.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/notes/search_api_spec.rb
spec/discovery/crm/objects/notes/search_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Notes::SearchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.notes.search_api } it { is_expected.to respond_to(:do_search) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/objects/notes/batch_api_spec.rb
spec/discovery/crm/objects/notes/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Objects::Notes::BatchApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.objects.notes.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/associations/client_spec.rb
spec/discovery/crm/associations/client_spec.rb
require 'spec_helper' describe 'Hubspot::Client' do subject(:client) { Hubspot::Client.new(access_token: 'test').crm.associations } it { is_expected.to respond_to(:v4) } it { is_expected.to respond_to(:schema) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/associations/batch_api_spec.rb
spec/discovery/crm/associations/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Associations::BatchApi' do subject(:batch_api) { Hubspot::Client.new(access_token: 'test').crm.associations.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/associations/v4/client_spec.rb
spec/discovery/crm/associations/v4/client_spec.rb
require 'spec_helper' describe 'Hubspot::Client' do subject(:client) { Hubspot::Client.new(access_token: 'test').crm.associations.v4 } it { is_expected.to respond_to(:schema) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/associations/v4/report_api_spec.rb
spec/discovery/crm/associations/v4/report_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Associations::V4::ReportApi' do subject(:report_api) { Hubspot::Client.new(access_token: 'test').crm.associations.v4.report_api } it { is_expected.to respond_to(:request) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/associations/v4/basic_api_spec.rb
spec/discovery/crm/associations/v4/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Associations::V4::BasicApi' do subject(:basic_api) { Hubspot::Client.new(access_token: 'test').crm.associations.v4.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create_default) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_page) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/associations/v4/batch_api_spec.rb
spec/discovery/crm/associations/v4/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Associations::V4::BatchApi' do subject(:batch_api) { Hubspot::Client.new(access_token: 'test').crm.associations.v4.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:archive_labels) } it { is_expected.to respond_to(:create_default) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_page) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/associations/v4/schema/definition_configurations_api_spec.rb
spec/discovery/crm/associations/v4/schema/definition_configurations_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Associations::V4::Schema::DefinitionConfigurationsApi' do subject(:definition_configurations_api) { Hubspot::Client.new(access_token: 'test').crm.associations.v4.schema.definition_configurations_api } it { is_expected.to respond_to(:batch_create) } it { is_expected.to respond_to(:batch_remove) } it { is_expected.to respond_to(:batch_update) } it { is_expected.to respond_to(:get_all) } it { is_expected.to respond_to(:get_all_between_two_object_types) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/associations/v4/schema/definitions_api_spec.rb
spec/discovery/crm/associations/v4/schema/definitions_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Associations::V4::Schema::DefinitionsApi' do subject(:definitions_api) { Hubspot::Client.new(access_token: 'test').crm.associations.v4.schema.definitions_api } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_all) } it { is_expected.to respond_to(:remove) } it { is_expected.to respond_to(:update) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/associations/schema/types_api_spec.rb
spec/discovery/crm/associations/schema/types_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Associations::Schema::TypesApi' do subject(:types_api) { Hubspot::Client.new(access_token: 'test').crm.associations.schema.types_api } it { is_expected.to respond_to(:get_all) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/imports/public_imports_api_spec.rb
spec/discovery/crm/imports/public_imports_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Imports::PublicImportsApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.imports.public_imports_api } it { is_expected.to respond_to(:get_errors) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/crm/imports/core_api_spec.rb
spec/discovery/crm/imports/core_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Crm::Imports::CoreApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').crm.imports.core_api } it { is_expected.to respond_to(:cancel) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/webhooks/subscriptions_api_spec.rb
spec/discovery/webhooks/subscriptions_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Webhooks::SubscriptionsApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').webhooks.subscriptions_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_all) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:update_batch) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/webhooks/settings_api_spec.rb
spec/discovery/webhooks/settings_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Webhooks::SettingsApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').webhooks.settings_api } it { is_expected.to respond_to(:clear) } it { is_expected.to respond_to(:configure) } it { is_expected.to respond_to(:get_all) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/events/events_api_spec.rb
spec/discovery/events/events_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Events::EventsApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').events.events_api } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:get_types) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/events/send/basic_api_spec.rb
spec/discovery/events/send/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Events::Send::BasicApi' do subject(:BasicApi) { Hubspot::Client.new(access_token: 'test').events.send.basic_api} it { is_expected.to respond_to(:call_send) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/events/send/batch_api_spec.rb
spec/discovery/events/send/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Events::Send::BatchApi' do subject(:BatchApi) { Hubspot::Client.new(access_token: 'test').events.send.batch_api} it { is_expected.to respond_to(:call_send) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/conversations/visitor-identification/generate_api_spec.rb
spec/discovery/conversations/visitor-identification/generate_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Conversations::VisitorIdentification::GenerateApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').conversations.visitor_identification.generate_api } it { is_expected.to respond_to(:generate_token) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/oauth/access_tokens_api_spec.rb
spec/discovery/oauth/access_tokens_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Oauth::AccessTokensApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').oauth.access_tokens_api } it { is_expected.to respond_to(:get) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/oauth/tokens_api_spec.rb
spec/discovery/oauth/tokens_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Oauth::TokensApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').oauth.tokens_api } it { is_expected.to respond_to(:create) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/oauth/refresh_tokens_api_spec.rb
spec/discovery/oauth/refresh_tokens_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Oauth::RefreshTokensApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').oauth.refresh_tokens_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:get) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/communication_preferences/definition_api_spec.rb
spec/discovery/communication_preferences/definition_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::CommunicationPreferences::DefinitionApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').communication_preferences.definition_api } it { is_expected.to respond_to(:get_page) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/communication_preferences/status_api_spec.rb
spec/discovery/communication_preferences/status_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::CommunicationPreferences::StatusApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').communication_preferences.status_api } it { is_expected.to respond_to(:get_email_status) } it { is_expected.to respond_to(:subscribe) } it { is_expected.to respond_to(:unsubscribe) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/client_spec.rb
spec/discovery/marketing/client_spec.rb
require 'spec_helper' describe 'Hubspot::Client' do subject(:client) { Hubspot::Client.new(access_token: 'test').marketing } it { is_expected.to respond_to(:events) } it { is_expected.to respond_to(:forms) } it { is_expected.to respond_to(:transactional) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/emails/marketing_emails_api_spec.rb
spec/discovery/marketing/emails/marketing_emails_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Marketing::Emails::MarketingEmailsApi' do subject(:MarketingEmailsApi) { Hubspot::Client.new(access_token: 'test').marketing.emails.marketing_emails_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:clone) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:create_ab_test_variation) } it { is_expected.to respond_to(:get_ab_test_variation) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_draft) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:get_revision_by_id) } it { is_expected.to respond_to(:get_revisions) } it { is_expected.to respond_to(:publish_or_send) } it { is_expected.to respond_to(:reset_draft) } it { is_expected.to respond_to(:restore_draft_revision) } it { is_expected.to respond_to(:restore_revision) } it { is_expected.to respond_to(:unpublish_or_cancel) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:upsert_draft) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/emails/statistics_api_spec.rb
spec/discovery/marketing/emails/statistics_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Marketing::Emails::StatisticsApi' do subject(:StatisticsApi) { Hubspot::Client.new(access_token: 'test').marketing.emails.statistics_api } it { is_expected.to respond_to(:get_emails_list) } it { is_expected.to respond_to(:get_histogram) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/forms/forms_api_spec.rb
spec/discovery/marketing/forms/forms_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Marketing::Forms::FormsApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').marketing.forms.forms_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:replace) } it { is_expected.to respond_to(:update) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/events/add_event_attendees_api_spec.rb
spec/discovery/marketing/events/add_event_attendees_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Marketing::Events::AddEventAttendeesApi' do subject(:add_event_attendees_api) { Hubspot::Client.new(access_token: 'test').marketing.events.add_event_attendees_api } it { is_expected.to respond_to(:record_by_contact_emails) } it { is_expected.to respond_to(:record_by_contact_id) } it { is_expected.to respond_to(:record_by_contact_ids) } it { is_expected.to respond_to(:record_by_email) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/events/basic_api_spec.rb
spec/discovery/marketing/events/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Marketing::Events::BasicApi' do subject(:BasicApi) { Hubspot::Client.new(access_token: 'test').marketing.events.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:archive_by_object_id) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_all) } it { is_expected.to respond_to(:get_by_object_id) } it { is_expected.to respond_to(:get_details) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:update_by_object_id) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/events/identifiers_api_spec.rb
spec/discovery/marketing/events/identifiers_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Marketing::Events::IdentifiersApi' do subject(:IdentifiersApi) { Hubspot::Client.new(access_token: 'test').marketing.events.identifiers_api } it { is_expected.to respond_to(:do_search) } it { is_expected.to respond_to(:search_portal_events) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/events/retrieve_participant_state_api_spec.rb
spec/discovery/marketing/events/retrieve_participant_state_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Marketing::Events::RetrieveParticipantStateApi' do subject(:RetrieveParticipantStateApi) { Hubspot::Client.new(access_token: 'test').marketing.events.retrieve_participant_state_api } it { is_expected.to respond_to(:get_participations_breakdown_by_contact_id) } it { is_expected.to respond_to(:get_participations_breakdown_by_external_event_id) } it { is_expected.to respond_to(:get_participations_breakdown_by_marketing_event_id) } it { is_expected.to respond_to(:get_participations_counters_by_event_external_id) } it { is_expected.to respond_to(:get_participations_counters_by_marketing_event_id) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/events/subscriber_state_changes_api_spec.rb
spec/discovery/marketing/events/subscriber_state_changes_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Marketing::Events::SubscriberStateChangesApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').marketing.events.subscriber_state_changes_api } it { is_expected.to respond_to(:upsert_by_contact_email) } it { is_expected.to respond_to(:upsert_by_contact_id) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/events/batch_api_spec.rb
spec/discovery/marketing/events/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Marketing::Events::BatchApi' do subject(:BatchApi) { Hubspot::Client.new(access_token: 'test').marketing.events.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:archive_by_object_id) } it { is_expected.to respond_to(:update_by_object_id) } it { is_expected.to respond_to(:upsert) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/events/list_associations_api_spec.rb
spec/discovery/marketing/events/list_associations_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Marketing::Events::ListAssociationsApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').marketing.events.list_associations_api } it { is_expected.to respond_to(:associate_by_external_account_and_event_ids) } it { is_expected.to respond_to(:associate_by_marketing_event_id) } it { is_expected.to respond_to(:disassociate_by_external_account_and_event_ids) } it { is_expected.to respond_to(:disassociate_by_marketing_event_id) } it { is_expected.to respond_to(:get_all_by_external_account_and_event_ids) } it { is_expected.to respond_to(:get_all_by_marketing_event_id) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/events/settings_api_spec.rb
spec/discovery/marketing/events/settings_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Marketing::Events::SettingsApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').marketing.events.settings_api } it { is_expected.to respond_to(:get_all) } it { is_expected.to respond_to(:update) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/events/change_property_api_spec.rb
spec/discovery/marketing/events/change_property_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Marketing::Events::ChangePropertyApi' do subject(:ChangePropertyApi) { Hubspot::Client.new(access_token: 'test').marketing.events.change_property_api } it { is_expected.to respond_to(:cancel) } it { is_expected.to respond_to(:complete) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/transactional/public_smtp_tokens_api_spec.rb
spec/discovery/marketing/transactional/public_smtp_tokens_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Marketing::Transactional::PublicSMTPTokensApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').marketing.transactional.public_smtp_tokens_api } it { is_expected.to respond_to(:archive_token) } it { is_expected.to respond_to(:get_token_by_id) } it { is_expected.to respond_to(:get_tokens_page) } it { is_expected.to respond_to(:create_token) } it { is_expected.to respond_to(:reset_password) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/marketing/transactional/single_send_api_spec.rb
spec/discovery/marketing/transactional/single_send_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Marketing::Transactional::SingleSendApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').marketing.transactional.single_send_api } it { is_expected.to respond_to(:send_email) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/cms/client_spec.rb
spec/discovery/cms/client_spec.rb
require 'spec_helper' describe 'Hubspot::Client' do subject(:client) { Hubspot::Client.new(access_token: 'test').cms } it { is_expected.to respond_to(:audit_logs) } it { is_expected.to respond_to(:blogs) } it { is_expected.to respond_to(:domains) } it { is_expected.to respond_to(:hubdb) } it { is_expected.to respond_to(:pages) } it { is_expected.to respond_to(:site_search) } it { is_expected.to respond_to(:url_redirects) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/cms/blogs/client_spec.rb
spec/discovery/cms/blogs/client_spec.rb
require 'spec_helper' describe 'Hubspot::Client' do subject(:client) { Hubspot::Client.new(access_token: 'test').cms.blogs } it { is_expected.to respond_to(:authors) } it { is_expected.to respond_to(:blog_posts) } it { is_expected.to respond_to(:tags) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/cms/blogs/authors/blog_authors_api_spec.rb
spec/discovery/cms/blogs/authors/blog_authors_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Cms::Blogs::Authors::BlogAuthorsApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').cms.blogs.authors.blog_authors_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:archive_batch) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:create_batch) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:read_batch) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:update_batch) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/cms/blogs/tags/blog_tags_api_spec.rb
spec/discovery/cms/blogs/tags/blog_tags_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Cms::Blogs::Tags::BlogTagsApi' do subject(:api) { Hubspot::Client.new(access_token: 'test').cms.blogs.tags.blog_tags_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:archive_batch) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:create_batch) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:read_batch) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:update_batch) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/cms/blogs/blog-posts/basic_api_spec.rb
spec/discovery/cms/blogs/blog-posts/basic_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Cms::Blogs::BlogPosts::BasicApi' do subject(:BasicApi) { Hubspot::Client.new(access_token: 'test').cms.blogs.blog_posts.basic_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:clone) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_draft_by_id) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:get_previous_version) } it { is_expected.to respond_to(:get_previous_versions) } it { is_expected.to respond_to(:push_live) } it { is_expected.to respond_to(:reset_draft) } it { is_expected.to respond_to(:restore_previous_version) } it { is_expected.to respond_to(:restore_previous_version_to_draft) } it { is_expected.to respond_to(:schedule) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:update_draft) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/cms/blogs/blog-posts/multi_language_api_spec.rb
spec/discovery/cms/blogs/blog-posts/multi_language_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Cms::Blogs::BlogPosts::MultiLanguageApi' do subject(:MultiLanguageApi) { Hubspot::Client.new(access_token: 'test').cms.blogs.blog_posts.multi_language_api } it { is_expected.to respond_to(:attach_to_lang_group) } it { is_expected.to respond_to(:create_lang_variation) } it { is_expected.to respond_to(:detach_from_lang_group) } it { is_expected.to respond_to(:set_lang_primary) } it { is_expected.to respond_to(:update_langs) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/cms/blogs/blog-posts/batch_api_spec.rb
spec/discovery/cms/blogs/blog-posts/batch_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Cms::Blogs::BlogPosts::BatchApi' do subject(:BatchApi) { Hubspot::Client.new(access_token: 'test').cms.blogs.blog_posts.batch_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:read) } it { is_expected.to respond_to(:update) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/cms/pages/site_pages_api_spec.rb
spec/discovery/cms/pages/site_pages_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Cms::Pages::SitePagesApi' do subject(:pages_api) { Hubspot::Client.new(access_token: 'test').cms.pages.site_pages_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:archive_batch) } it { is_expected.to respond_to(:attach_to_lang_group) } it { is_expected.to respond_to(:clone) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:create_ab_test_variation) } it { is_expected.to respond_to(:create_batch) } it { is_expected.to respond_to(:create_lang_variation) } it { is_expected.to respond_to(:detach_from_lang_group) } it { is_expected.to respond_to(:end_active_ab_test) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_draft_by_id) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:get_previous_version) } it { is_expected.to respond_to(:get_previous_versions) } it { is_expected.to respond_to(:push_live) } it { is_expected.to respond_to(:read_batch) } it { is_expected.to respond_to(:rerun_previous_ab_test) } it { is_expected.to respond_to(:reset_draft) } it { is_expected.to respond_to(:restore_previous_version) } it { is_expected.to respond_to(:restore_previous_version_to_draft) } it { is_expected.to respond_to(:schedule) } it { is_expected.to respond_to(:set_lang_primary) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:update_batch) } it { is_expected.to respond_to(:update_draft) } it { is_expected.to respond_to(:update_langs) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false
HubSpot/hubspot-api-ruby
https://github.com/HubSpot/hubspot-api-ruby/blob/75a9afa65e9789fbe6ff711066d798ca0c10f432/spec/discovery/cms/pages/landing_pages_api_spec.rb
spec/discovery/cms/pages/landing_pages_api_spec.rb
require 'spec_helper' describe 'Hubspot::Discovery::Cms::Pages::LandingPagesApi' do subject(:pages_api) { Hubspot::Client.new(access_token: 'test').cms.pages.landing_pages_api } it { is_expected.to respond_to(:archive) } it { is_expected.to respond_to(:archive_batch) } it { is_expected.to respond_to(:archive_folder) } it { is_expected.to respond_to(:archive_folders) } it { is_expected.to respond_to(:attach_to_lang_group) } it { is_expected.to respond_to(:clone) } it { is_expected.to respond_to(:create) } it { is_expected.to respond_to(:create_ab_test_variation) } it { is_expected.to respond_to(:create_batch) } it { is_expected.to respond_to(:create_folder) } it { is_expected.to respond_to(:create_folders) } it { is_expected.to respond_to(:create_lang_variation) } it { is_expected.to respond_to(:detach_from_lang_group) } it { is_expected.to respond_to(:end_active_ab_test) } it { is_expected.to respond_to(:get_by_id) } it { is_expected.to respond_to(:get_draft_by_id) } it { is_expected.to respond_to(:get_folder_by_id) } it { is_expected.to respond_to(:get_folder_previous_version) } it { is_expected.to respond_to(:get_folder_previous_versions) } it { is_expected.to respond_to(:get_folders_page) } it { is_expected.to respond_to(:get_page) } it { is_expected.to respond_to(:get_previous_version) } it { is_expected.to respond_to(:get_previous_versions) } it { is_expected.to respond_to(:push_live) } it { is_expected.to respond_to(:read_batch) } it { is_expected.to respond_to(:read_folders) } it { is_expected.to respond_to(:rerun_previous_ab_test) } it { is_expected.to respond_to(:reset_draft) } it { is_expected.to respond_to(:restore_folder_previous_version) } it { is_expected.to respond_to(:restore_previous_version) } it { is_expected.to respond_to(:restore_previous_version_to_draft) } it { is_expected.to respond_to(:schedule) } it { is_expected.to respond_to(:set_lang_primary) } it { is_expected.to respond_to(:update) } it { is_expected.to respond_to(:update_batch) } it { is_expected.to respond_to(:update_draft) } it { is_expected.to respond_to(:update_folder) } it { is_expected.to respond_to(:update_folders) } it { is_expected.to respond_to(:update_langs) } end
ruby
Apache-2.0
75a9afa65e9789fbe6ff711066d798ca0c10f432
2026-01-04T17:55:03.682567Z
false