desoleary / survey-monkey-swagger-client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

survey_monkey_swagger_client

SurveyMonkeySwaggerClient - the Ruby gem for the SurveyMonkey API V3

No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)

This SDK is automatically generated by the Swagger Codegen project:

  • API version: 1.0.0
  • Package version: 1.0.0
  • Build package: io.swagger.codegen.v3.generators.ruby.RubyClientCodegen

Installation

Build a gem

To build the Ruby code into a gem:

gem build survey_monkey_swagger_client.gemspec

Then either install the gem locally:

gem install ./survey_monkey_swagger_client-1.0.0.gem

(for development, run gem install --dev ./survey_monkey_swagger_client-1.0.0.gem to install the development dependencies)

or publish the gem to a gem hosting service, e.g. RubyGems.

Finally add this to the Gemfile:

gem 'survey_monkey_swagger_client', '~> 1.0.0'

Install from Git

If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:

gem 'survey_monkey_swagger_client', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'

Include the Ruby code directly

Include the Ruby code directly using -I as follows:

ruby -Ilib script.rb

Getting Started

Please follow the installation procedure and then run the following code:

# Load the gem
require 'survey_monkey_swagger_client'

api_instance = SurveyMonkeySwaggerClient::BenchmarksApi.new

begin
  #Get a list of benchmark bundles
  api_instance.get_a_list_of_benchmark_bundles
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling BenchmarksApi->get_a_list_of_benchmark_bundles: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::BenchmarksApi.new
bundle_id = 'bundle_id_example' # String | 


begin
  #Get a list of benchmark bundles details
  api_instance.get_a_list_of_benchmark_bundles_details(bundle_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling BenchmarksApi->get_a_list_of_benchmark_bundles_details: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::BenchmarksApi.new
bundle_id = 'bundle_id_example' # String | 


begin
  #Get bundle benchmark
  api_instance.get_bundle_benchmark(bundle_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling BenchmarksApi->get_bundle_benchmark: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::BenchmarksApi.new
page_id = 'page_id_example' # String | 
question_id = 'question_id_example' # String | 


begin
  #Get question benchmark
  api_instance.get_question_benchmark(page_id, question_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling BenchmarksApi->get_question_benchmark: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 
message_id = 'message_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::MESSAGEIDRecipientsBody.new # MESSAGEIDRecipientsBody | 
}

begin
  #Add recipient to a message
  api_instance.add_recipient_to_a_message(collector_id, message_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->add_recipient_to_a_message: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::COLLECTORIDMessagesBody.new # COLLECTORIDMessagesBody | 
}

begin
  #Create a collector message
  api_instance.create_a_collector_message(collector_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->create_a_collector_message: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
opts = { 
  body: SurveyMonkeySwaggerClient::Model310099766CollectorsBody.new # Model310099766CollectorsBody | 
}

begin
  #Create a survey collector
  api_instance.create_a_survey_collector(opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->create_a_survey_collector: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 
message_id = 'message_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::RecipientsBulkBody.new # RecipientsBulkBody | 
}

begin
  #Create multiple recipients
  api_instance.create_multiple_recipients(collector_id, message_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->create_multiple_recipients: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 


begin
  #Delete a collector
  api_instance.delete_a_collector(collector_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->delete_a_collector: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 
message_id = 'message_id_example' # String | 


begin
  #Delete a message
  api_instance.delete_a_message(collector_id, message_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->delete_a_message: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 
recipient_id = 'recipient_id_example' # String | 


begin
  #Delete a recipient
  api_instance.delete_a_recipient(collector_id, recipient_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->delete_a_recipient: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 


begin
  #Get a collector by id
  api_instance.get_a_collector_by_id(collector_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->get_a_collector_by_id: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 
message_id = 'message_id_example' # String | 


begin
  #Get a list of recipients
  api_instance.get_a_list_of_recipients(collector_id, message_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->get_a_list_of_recipients: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 
message_id = 'message_id_example' # String | 


begin
  #Get a message by id
  api_instance.get_a_message_by_id(collector_id, message_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->get_a_message_by_id: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 
recipient_id = 'recipient_id_example' # String | 


begin
  #Get a recipient
  api_instance.get_a_recipient(collector_id, recipient_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->get_a_recipient: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 


begin
  #Get collector messages
  api_instance.get_collector_messages(collector_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->get_collector_messages: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new

begin
  #Get survey collectors
  api_instance.get_survey_collectors
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->get_survey_collectors: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::CollectorsCOLLECTORIDBody1.new # CollectorsCOLLECTORIDBody1 | 
}

begin
  #Modify a collector
  api_instance.modify_a_collector(collector_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->modify_a_collector: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 
message_id = 'message_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::MessagesMESSAGEIDBody1.new # MessagesMESSAGEIDBody1 | 
}

begin
  #Modify a message by id
  api_instance.modify_a_message_by_id(collector_id, message_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->modify_a_message_by_id: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::CollectorsCOLLECTORIDBody.new # CollectorsCOLLECTORIDBody | 
}

begin
  #Replace a collector
  api_instance.replace_a_collector(collector_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->replace_a_collector: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 
message_id = 'message_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::MessagesMESSAGEIDBody.new # MessagesMESSAGEIDBody | 
}

begin
  #Replace a message
  api_instance.replace_a_message(collector_id, message_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->replace_a_message: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi.new
collector_id = 'collector_id_example' # String | 
message_id = 'message_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::MESSAGEIDSendBody.new # MESSAGEIDSendBody | 
}

begin
  #Send and existing message
  api_instance.send_and_existing_message(collector_id, message_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling CollectorsAndInviteMessagesApi->send_and_existing_message: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
opts = { 
  body: SurveyMonkeySwaggerClient::V3ContactListsBody.new # V3ContactListsBody | 
}

begin
  #Create a contact list
  api_instance.create_a_contact_list(opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->create_a_contact_list: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
opts = { 
  body: SurveyMonkeySwaggerClient::V3ContactsBody.new # V3ContactsBody | 
}

begin
  #Create a new contact
  api_instance.create_a_new_contact(opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->create_a_new_contact: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
opts = { 
  body: SurveyMonkeySwaggerClient::ContactsBulkBody1.new # ContactsBulkBody1 | 
}

begin
  #Create multiple contacts
  api_instance.create_multiple_contacts(opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->create_multiple_contacts: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
contact_list_id = 'contact_list_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::ContactsBulkBody.new # ContactsBulkBody | 
}

begin
  #Create multiple contacts under contact list
  api_instance.create_multiple_contacts_under_contact_list(contact_list_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->create_multiple_contacts_under_contact_list: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
contact_id = 'contact_id_example' # String | 


begin
  #Delete a contact
  api_instance.delete_a_contact(contact_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->delete_a_contact: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
contact_list_id = 'contact_list_id_example' # String | 


begin
  #Delete a contact list
  api_instance.delete_a_contact_list(contact_list_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->delete_a_contact_list: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
contact_id = 'contact_id_example' # String | 


begin
  #Get a contact
  api_instance.get_a_contact(contact_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->get_a_contact: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
contact_field_id = 'contact_field_id_example' # String | 


begin
  #Get a contact field
  api_instance.get_a_contact_field(contact_field_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->get_a_contact_field: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
contact_list_id = 'contact_list_id_example' # String | 


begin
  #Get a contact list
  api_instance.get_a_contact_list(contact_list_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->get_a_contact_list: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new

begin
  #Get a list of contact fields
  api_instance.get_a_list_of_contact_fields
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->get_a_list_of_contact_fields: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new

begin
  #Get all Contact List
  api_instance.get_all_contact_list
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->get_all_contact_list: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new

begin
  #Get all contacts
  api_instance.get_all_contacts
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->get_all_contacts: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
contact_list_id = 'contact_list_id_example' # String | 


begin
  #Get all contacts under contact list
  api_instance.get_all_contacts_under_contact_list(contact_list_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->get_all_contacts_under_contact_list: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
contact_list_id = 'contact_list_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::CONTACTLISTIDCopyBody.new # CONTACTLISTIDCopyBody | 
}

begin
  #Merge contact list
  api_instance.merge_contact_list(contact_list_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->merge_contact_list: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
contact_id = 'contact_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::ContactsCONTACTIDBody.new # ContactsCONTACTIDBody | 
}

begin
  #Modify a contact
  api_instance.modify_a_contact(contact_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->modify_a_contact: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
contact_field_id = 'contact_field_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::ContactFieldsCONTACTFIELDIDBody.new # ContactFieldsCONTACTFIELDIDBody | 
}

begin
  #Modify a contact field
  api_instance.modify_a_contact_field(contact_field_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->modify_a_contact_field: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
contact_list_id = 'contact_list_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::ContactListsCONTACTLISTIDBody1.new # ContactListsCONTACTLISTIDBody1 | 
}

begin
  #Modify a contact list
  api_instance.modify_a_contact_list(contact_list_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->modify_a_contact_list: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
contact_id = 'contact_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::ContactsCONTACTIDBody1.new # ContactsCONTACTIDBody1 | 
}

begin
  #Replace a contact
  api_instance.replace_a_contact(contact_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->replace_a_contact: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ContactsAndContactListsApi.new
contact_list_id = 'contact_list_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::ContactListsCONTACTLISTIDBody.new # ContactListsCONTACTLISTIDBody | 
}

begin
  #Replace a contact list
  api_instance.replace_a_contact_list(contact_list_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ContactsAndContactListsApi->replace_a_contact_list: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ErrorsApi.new

begin
  #Get error by id
  api_instance.get_error_by_id
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ErrorsApi->get_error_by_id: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ErrorsApi.new

begin
  #Get list of known errors
  api_instance.get_list_of_known_errors
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ErrorsApi->get_list_of_known_errors: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ResponseCountsAndTrendsApi.new
page_id = 'page_id_example' # String | 
question_id = 'question_id_example' # String | 


begin
  #Get rollups for a question
  api_instance.get_rollups_for_a_question(page_id, question_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ResponseCountsAndTrendsApi->get_rollups_for_a_question: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ResponseCountsAndTrendsApi.new

begin
  #Get rollups for a survey
  api_instance.get_rollups_for_a_survey
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ResponseCountsAndTrendsApi->get_rollups_for_a_survey: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ResponseCountsAndTrendsApi.new
page_id = 'page_id_example' # String | 


begin
  #Get rollups for a survey page
  api_instance.get_rollups_for_a_survey_page(page_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ResponseCountsAndTrendsApi->get_rollups_for_a_survey_page: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ResponseCountsAndTrendsApi.new
page_id = 'page_id_example' # String | 
question_id = 'question_id_example' # String | 


begin
  #Get trends for a question
  api_instance.get_trends_for_a_question(page_id, question_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ResponseCountsAndTrendsApi->get_trends_for_a_question: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ResponseCountsAndTrendsApi.new

begin
  #Get trends for a survey
  api_instance.get_trends_for_a_survey
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ResponseCountsAndTrendsApi->get_trends_for_a_survey: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::ResponseCountsAndTrendsApi.new
page_id = 'page_id_example' # String | 


begin
  #Get trends for a survey page
  api_instance.get_trends_for_a_survey_page(page_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling ResponseCountsAndTrendsApi->get_trends_for_a_survey_page: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyFolders_Api.new
opts = { 
  body: SurveyMonkeySwaggerClient::V3SurveyFoldersBody.new # V3SurveyFoldersBody | 
}

begin
  #Create a folder
  api_instance.create_a_folder(opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyFolders_Api->create_a_folder: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyFolders_Api.new
folder_id = 'folder_id_example' # String | 


begin
  #Delete a folder
  api_instance.delete_a_folder(folder_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyFolders_Api->delete_a_folder: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyFolders_Api.new
folder_id = 'folder_id_example' # String | 


begin
  #Get a folder
  api_instance.get_a_folder(folder_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyFolders_Api->get_a_folder: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyFolders_Api.new

begin
  #Get all folders
  api_instance.get_all_folders
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyFolders_Api->get_all_folders: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyFolders_Api.new
folder_id = 'folder_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::SurveyFoldersFolderIdBody.new # SurveyFoldersFolderIdBody | 
}

begin
  #Update a folder
  api_instance.update_a_folder(folder_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyFolders_Api->update_a_folder: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyResponsesApi.new
collector_id = 'collector_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::COLLECTORIDResponsesBody.new # COLLECTORIDResponsesBody | 
}

begin
  #Create a response
  api_instance.create_a_response(collector_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyResponsesApi->create_a_response: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyResponsesApi.new
collector_id = 'collector_id_example' # String | 
response_id = 'response_id_example' # String | 


begin
  #Delete a response by response id
  api_instance.delete_a_response_by_response_id(collector_id, response_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyResponsesApi->delete_a_response_by_response_id: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyResponsesApi.new
collector_id = 'collector_id_example' # String | 


begin
  #Get a list of responses by collector id
  api_instance.get_a_list_of_responses_by_collector_id(collector_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyResponsesApi->get_a_list_of_responses_by_collector_id: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyResponsesApi.new
collector_id = 'collector_id_example' # String | 


begin
  #Get a list of responses by collector id
  api_instance.get_a_list_of_responses_by_collector_id1(collector_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyResponsesApi->get_a_list_of_responses_by_collector_id1: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyResponsesApi.new

begin
  # Get a list of responses by survey id
  api_instance.get_a_list_of_responses_by_survey_id
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyResponsesApi->get_a_list_of_responses_by_survey_id: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyResponsesApi.new
collector_id = 'collector_id_example' # String | 
response_id = 'response_id_example' # String | 


begin
  #Get response by collector and response id
  api_instance.get_response_by_collector_and_response_id(collector_id, response_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyResponsesApi->get_response_by_collector_and_response_id: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyResponsesApi.new
response_id = 'response_id_example' # String | 


begin
  #Get response by survey and response id
  api_instance.get_response_by_survey_and_response_id(response_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyResponsesApi->get_response_by_survey_and_response_id: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyResponsesApi.new
collector_id = 'collector_id_example' # String | 
response_id = 'response_id_example' # String | 


begin
  #Get response details
  api_instance.get_response_details(collector_id, response_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyResponsesApi->get_response_details: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyResponsesApi.new
collector_id = 'collector_id_example' # String | 
response_id = 'response_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::ResponsesRESPONSEIDBody1.new # ResponsesRESPONSEIDBody1 | 
}

begin
  #Modify a response by response id
  api_instance.modify_a_response_by_response_id(collector_id, response_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyResponsesApi->modify_a_response_by_response_id: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveyResponsesApi.new
collector_id = 'collector_id_example' # String | 
response_id = 'response_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::ResponsesRESPONSEIDBody.new # ResponsesRESPONSEIDBody | 
}

begin
  #Replace a response by response id
  api_instance.replace_a_response_by_response_id(collector_id, response_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveyResponsesApi->replace_a_response_by_response_id: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new
page_id = 'page_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::PAGEIDQuestionsBody.new # PAGEIDQuestionsBody | 
}

begin
  #Create a question
  api_instance.create_a_question(page_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->create_a_question: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new
opts = { 
  body: SurveyMonkeySwaggerClient::V3SurveysBody.new # V3SurveysBody | 
}

begin
  #Create a survey
  result = api_instance.create_a_survey(opts)
  p result
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->create_a_survey: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new
opts = { 
  body: SurveyMonkeySwaggerClient::Model310099766PagesBody.new # Model310099766PagesBody | 
}

begin
  #Create a survey pages
  api_instance.create_a_survey_pages(opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->create_a_survey_pages: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new
page_id = 'page_id_example' # String | 


begin
  #Delete a page
  api_instance.delete_a_page(page_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->delete_a_page: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new
page_id = 'page_id_example' # String | 
question_id = 'question_id_example' # String | 


begin
  #Delete a question
  api_instance.delete_a_question(page_id, question_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->delete_a_question: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new

begin
  #Delete a survey
  api_instance.delete_a_survey
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->delete_a_survey: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new
page_id = 'page_id_example' # String | 


begin
  #Get a page detail
  api_instance.get_a_page_detail(page_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->get_a_page_detail: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new
page_id = 'page_id_example' # String | 
question_id = 'question_id_example' # String | 


begin
  #Get a question detail
  api_instance.get_a_question_detail(page_id, question_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->get_a_question_detail: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new

begin
  #Get a survey
  api_instance.get_a_survey
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->get_a_survey: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new

begin
  #Get a survey details
  api_instance.get_a_survey_details
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->get_a_survey_details: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new
page_id = 'page_id_example' # String | 


begin
  #Get list of questions
  api_instance.get_list_of_questions(page_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->get_list_of_questions: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new

begin
  #Get survey categories
  api_instance.get_survey_categories
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->get_survey_categories: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new

begin
  #Get survey pages
  api_instance.get_survey_pages
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->get_survey_pages: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new

begin
  #Get survey template
  result = api_instance.get_survey_template
  p result
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->get_survey_template: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new

begin
  #Get surveys
  api_instance.get_surveys
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->get_surveys: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new
page_id = 'page_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::PagesPAGEIDBody1.new # PagesPAGEIDBody1 | 
}

begin
  #Modify a page
  api_instance.modify_a_page(page_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->modify_a_page: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new
opts = { 
  body: SurveyMonkeySwaggerClient::Surveys310099766Body1.new # Surveys310099766Body1 | 
}

begin
  #Modify a survey
  api_instance.modify_a_survey(opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->modify_a_survey: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new
page_id = 'page_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::PagesPAGEIDBody.new # PagesPAGEIDBody | 
}

begin
  #Replace a page
  api_instance.replace_a_page(page_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->replace_a_page: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new
page_id = 'page_id_example' # String | 
question_id = 'question_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::QuestionsQUESTIONIDBody.new # QuestionsQUESTIONIDBody | 
}

begin
  #Replace a question
  api_instance.replace_a_question(page_id, question_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->replace_a_question: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new
opts = { 
  body: SurveyMonkeySwaggerClient::Surveys310099766Body.new # Surveys310099766Body | 
}

begin
  #Replace a survey
  api_instance.replace_a_survey(opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->replace_a_survey: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi.new
page_id = 'page_id_example' # String | 
question_id = 'question_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::QuestionsQUESTIONIDBody1.new # QuestionsQUESTIONIDBody1 | 
}

begin
  #Update a question
  api_instance.update_a_question(page_id, question_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling SurveysPagesAndQuestionsApi->update_a_question: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::TranslationsForMultilingualSurveysApi.new
survey_id = 'survey_id_example' # String | 
locale = 'locale_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::LanguagesLocaleBody.new # LanguagesLocaleBody | 
}

begin
  #Create a translation
  api_instance.create_a_translation(survey_id, locale, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling TranslationsForMultilingualSurveysApi->create_a_translation: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::TranslationsForMultilingualSurveysApi.new
survey_id = 'survey_id_example' # String | 


begin
  #Get a survey translation
  api_instance.get_a_survey_translation(survey_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling TranslationsForMultilingualSurveysApi->get_a_survey_translation: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::TranslationsForMultilingualSurveysApi.new

begin
  #Get available languages
  api_instance.get_available_languages
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling TranslationsForMultilingualSurveysApi->get_available_languages: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::TranslationsForMultilingualSurveysApi.new
survey_id = 'survey_id_example' # String | 
locale = 'locale_example' # String | 


begin
  #Get translation structure
  api_instance.get_translation_structure(survey_id, locale)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling TranslationsForMultilingualSurveysApi->get_translation_structure: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::TranslationsForMultilingualSurveysApi.new
survey_id = 'survey_id_example' # String | 
locale = 'locale_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::LanguagesLocaleBody1.new # LanguagesLocaleBody1 | 
}

begin
  #Modify a translation 
  api_instance.modify_a_translation(survey_id, locale, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling TranslationsForMultilingualSurveysApi->modify_a_translation: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::UsersAndGroupsApi.new

begin
  #Get a group member
  api_instance.get_a_group_member
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling UsersAndGroupsApi->get_a_group_member: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::UsersAndGroupsApi.new

begin
  #Get group members
  api_instance.get_group_members
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling UsersAndGroupsApi->get_group_members: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::UsersAndGroupsApi.new

begin
  #Get user details
  api_instance.get_user_details
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling UsersAndGroupsApi->get_user_details: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::UsersAndGroupsApi.new

begin
  #Get user group
  api_instance.get_user_group
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling UsersAndGroupsApi->get_user_group: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::UsersAndGroupsApi.new

begin
  #Get user group by id
  api_instance.get_user_group_by_id
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling UsersAndGroupsApi->get_user_group_by_id: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::WebhooksApi.new
opts = { 
  body: SurveyMonkeySwaggerClient::V3WebhooksBody.new # V3WebhooksBody | 
}

begin
  #Create a  webhooks
  api_instance.create_a_webhooks(opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling WebhooksApi->create_a_webhooks: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::WebhooksApi.new
webhook_id = 'webhook_id_example' # String | 


begin
  #Delete a webhook
  api_instance.delete_a_webhook(webhook_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling WebhooksApi->delete_a_webhook: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::WebhooksApi.new

begin
  #Get a list of webhooks
  api_instance.get_a_list_of_webhooks
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling WebhooksApi->get_a_list_of_webhooks: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::WebhooksApi.new
webhook_id = 'webhook_id_example' # String | 


begin
  #Get a webhook by id
  api_instance.get_a_webhook_by_id(webhook_id)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling WebhooksApi->get_a_webhook_by_id: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::WebhooksApi.new
webhook_id = 'webhook_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::WebhooksWEBHOOKIDBody1.new # WebhooksWEBHOOKIDBody1 | 
}

begin
  #Modify a webhook
  api_instance.modify_a_webhook(webhook_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling WebhooksApi->modify_a_webhook: #{e}"
end

api_instance = SurveyMonkeySwaggerClient::WebhooksApi.new
webhook_id = 'webhook_id_example' # String | 
opts = { 
  body: SurveyMonkeySwaggerClient::WebhooksWEBHOOKIDBody.new # WebhooksWEBHOOKIDBody | 
}

begin
  #Replace a webhook
  api_instance.replace_a_webhook(webhook_id, opts)
rescue SurveyMonkeySwaggerClient::ApiError => e
  puts "Exception when calling WebhooksApi->replace_a_webhook: #{e}"
end

Documentation for API Endpoints

All URIs are relative to https://api.surveymonkey.net

Class Method HTTP request Description
SurveyMonkeySwaggerClient::BenchmarksApi get_a_list_of_benchmark_bundles GET /v3/benchmark_bundles Get a list of benchmark bundles
SurveyMonkeySwaggerClient::BenchmarksApi get_a_list_of_benchmark_bundles_details GET /v3/benchmark_bundles/{BUNDLE_ID} Get a list of benchmark bundles details
SurveyMonkeySwaggerClient::BenchmarksApi get_bundle_benchmark GET /v3/benchmark_bundles/{BUNDLE_ID}/analyze Get bundle benchmark
SurveyMonkeySwaggerClient::BenchmarksApi get_question_benchmark GET /v3/surveys/310099766/pages/{PAGE_ID}/questions/{QUESTION_ID}/benchmark Get question benchmark
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi add_recipient_to_a_message POST /v3/collectors/{COLLECTOR_ID}/messages/{MESSAGE_ID}/recipients Add recipient to a message
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi create_a_collector_message POST /v3/collectors/{COLLECTOR_ID}/messages Create a collector message
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi create_a_survey_collector POST /v3/surveys/310099766/collectors Create a survey collector
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi create_multiple_recipients POST /v3/collectors/{COLLECTOR_ID}/messages/{MESSAGE_ID}/recipients/bulk Create multiple recipients
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi delete_a_collector DELETE /v3/collectors/{COLLECTOR_ID} Delete a collector
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi delete_a_message DELETE /v3/collectors/{COLLECTOR_ID}/messages/{MESSAGE_ID}/ Delete a message
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi delete_a_recipient DELETE /v3/collectors/{COLLECTOR_ID}/recipients/{RECIPIENT_ID} Delete a recipient
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi get_a_collector_by_id GET /v3/collectors/{COLLECTOR_ID} Get a collector by id
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi get_a_list_of_recipients GET /v3/collectors/{COLLECTOR_ID}/messages/{MESSAGE_ID}/recipients Get a list of recipients
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi get_a_message_by_id GET /v3/collectors/{COLLECTOR_ID}/messages/{MESSAGE_ID} Get a message by id
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi get_a_recipient GET /v3/collectors/{COLLECTOR_ID}/recipients/{RECIPIENT_ID} Get a recipient
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi get_collector_messages GET /v3/collectors/{COLLECTOR_ID}/messages Get collector messages
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi get_survey_collectors GET /v3/surveys/310099766/collectors Get survey collectors
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi modify_a_collector PATCH /v3/collectors/{COLLECTOR_ID} Modify a collector
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi modify_a_message_by_id PATCH /v3/collectors/{COLLECTOR_ID}/messages/{MESSAGE_ID}/ Modify a message by id
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi replace_a_collector PUT /v3/collectors/{COLLECTOR_ID} Replace a collector
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi replace_a_message PUT /v3/collectors/{COLLECTOR_ID}/messages/{MESSAGE_ID}/ Replace a message
SurveyMonkeySwaggerClient::CollectorsAndInviteMessagesApi send_and_existing_message POST /v3/collectors/{COLLECTOR_ID}/messages/{MESSAGE_ID}/send Send and existing message
SurveyMonkeySwaggerClient::ContactsAndContactListsApi create_a_contact_list POST /v3/contact_lists Create a contact list
SurveyMonkeySwaggerClient::ContactsAndContactListsApi create_a_new_contact POST /v3/contacts Create a new contact
SurveyMonkeySwaggerClient::ContactsAndContactListsApi create_multiple_contacts POST /v3/contacts/bulk Create multiple contacts
SurveyMonkeySwaggerClient::ContactsAndContactListsApi create_multiple_contacts_under_contact_list POST /v3/contact_lists/{CONTACT_LIST_ID}/contacts/bulk Create multiple contacts under contact list
SurveyMonkeySwaggerClient::ContactsAndContactListsApi delete_a_contact DELETE /v3/contacts/{CONTACT_ID} Delete a contact
SurveyMonkeySwaggerClient::ContactsAndContactListsApi delete_a_contact_list DELETE /v3/contact_lists/{CONTACT_LIST_ID} Delete a contact list
SurveyMonkeySwaggerClient::ContactsAndContactListsApi get_a_contact GET /v3/contacts/{CONTACT_ID} Get a contact
SurveyMonkeySwaggerClient::ContactsAndContactListsApi get_a_contact_field GET /v3/contact_fields/{CONTACT_FIELD_ID} Get a contact field
SurveyMonkeySwaggerClient::ContactsAndContactListsApi get_a_contact_list GET /v3/contact_lists/{CONTACT_LIST_ID} Get a contact list
SurveyMonkeySwaggerClient::ContactsAndContactListsApi get_a_list_of_contact_fields GET /v3/contact_fields Get a list of contact fields
SurveyMonkeySwaggerClient::ContactsAndContactListsApi get_all_contact_list GET /v3/contact_lists Get all Contact List
SurveyMonkeySwaggerClient::ContactsAndContactListsApi get_all_contacts GET /v3/contacts Get all contacts
SurveyMonkeySwaggerClient::ContactsAndContactListsApi get_all_contacts_under_contact_list GET /v3/contact_lists/{CONTACT_LIST_ID}/contacts Get all contacts under contact list
SurveyMonkeySwaggerClient::ContactsAndContactListsApi merge_contact_list POST /v3/contact_lists/{CONTACT_LIST_ID}/copy Merge contact list
SurveyMonkeySwaggerClient::ContactsAndContactListsApi modify_a_contact PATCH /v3/contacts/{CONTACT_ID} Modify a contact
SurveyMonkeySwaggerClient::ContactsAndContactListsApi modify_a_contact_field PATCH /v3/contact_fields/{CONTACT_FIELD_ID} Modify a contact field
SurveyMonkeySwaggerClient::ContactsAndContactListsApi modify_a_contact_list PATCH /v3/contact_lists/{CONTACT_LIST_ID} Modify a contact list
SurveyMonkeySwaggerClient::ContactsAndContactListsApi replace_a_contact PUT /v3/contacts/{CONTACT_ID}/ Replace a contact
SurveyMonkeySwaggerClient::ContactsAndContactListsApi replace_a_contact_list PUT /v3/contact_lists/{CONTACT_LIST_ID} Replace a contact list
SurveyMonkeySwaggerClient::ErrorsApi get_error_by_id GET /v3/errors/ERROR_ID Get error by id
SurveyMonkeySwaggerClient::ErrorsApi get_list_of_known_errors GET /v3/errors Get list of known errors
SurveyMonkeySwaggerClient::ResponseCountsAndTrendsApi get_rollups_for_a_question GET /v3/surveys/310099766/pages/{PAGE_ID}/questions/{QUESTION_ID}/rollups Get rollups for a question
SurveyMonkeySwaggerClient::ResponseCountsAndTrendsApi get_rollups_for_a_survey GET /v3/surveys/310099766/rollups Get rollups for a survey
SurveyMonkeySwaggerClient::ResponseCountsAndTrendsApi get_rollups_for_a_survey_page GET /v3/surveys/310099766/pages/{PAGE_ID}/rollups Get rollups for a survey page
SurveyMonkeySwaggerClient::ResponseCountsAndTrendsApi get_trends_for_a_question GET /v3/surveys/310099766/pages/{PAGE_ID}/questions/{QUESTION_ID}/trends Get trends for a question
SurveyMonkeySwaggerClient::ResponseCountsAndTrendsApi get_trends_for_a_survey GET /v3/surveys/310099766/trends Get trends for a survey
SurveyMonkeySwaggerClient::ResponseCountsAndTrendsApi get_trends_for_a_survey_page GET /v3/surveys/310099766/pages/{PAGE_ID}/trends Get trends for a survey page
SurveyMonkeySwaggerClient::SurveyFolders_Api create_a_folder POST /v3/survey_folders Create a folder
SurveyMonkeySwaggerClient::SurveyFolders_Api delete_a_folder DELETE /v3/survey_folders/{folder_id} Delete a folder
SurveyMonkeySwaggerClient::SurveyFolders_Api get_a_folder GET /v3/survey_folders/{folder_id} Get a folder
SurveyMonkeySwaggerClient::SurveyFolders_Api get_all_folders GET /v3/survey_folders Get all folders
SurveyMonkeySwaggerClient::SurveyFolders_Api update_a_folder PATCH /v3/survey_folders/{folder_id} Update a folder
SurveyMonkeySwaggerClient::SurveyResponsesApi create_a_response POST /v3/collectors/{COLLECTOR_ID}/responses Create a response
SurveyMonkeySwaggerClient::SurveyResponsesApi delete_a_response_by_response_id DELETE /v3/collectors/{COLLECTOR_ID}/responses/{RESPONSE_ID} Delete a response by response id
SurveyMonkeySwaggerClient::SurveyResponsesApi get_a_list_of_responses_by_collector_id GET /v3/collectors/{COLLECTOR_ID}/responses Get a list of responses by collector id
SurveyMonkeySwaggerClient::SurveyResponsesApi get_a_list_of_responses_by_collector_id1 GET /v3/collectors/{COLLECTOR_ID}/responses/bulk Get a list of responses by collector id
SurveyMonkeySwaggerClient::SurveyResponsesApi get_a_list_of_responses_by_survey_id GET /v3/surveys/310099766/responses/bulk Get a list of responses by survey id
SurveyMonkeySwaggerClient::SurveyResponsesApi get_response_by_collector_and_response_id GET /v3/collectors/{COLLECTOR_ID}/responses/{RESPONSE_ID} Get response by collector and response id
SurveyMonkeySwaggerClient::SurveyResponsesApi get_response_by_survey_and_response_id GET /v3/survey/310099766/responses/{RESPONSE_ID} Get response by survey and response id
SurveyMonkeySwaggerClient::SurveyResponsesApi get_response_details GET /v3/collectors/{COLLECTOR_ID}/responses/{RESPONSE_ID}/details Get response details
SurveyMonkeySwaggerClient::SurveyResponsesApi modify_a_response_by_response_id PATCH /v3/collectors/{COLLECTOR_ID}/responses/{RESPONSE_ID} Modify a response by response id
SurveyMonkeySwaggerClient::SurveyResponsesApi replace_a_response_by_response_id PUT /v3/collectors/{COLLECTOR_ID}/responses/{RESPONSE_ID} Replace a response by response id
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi create_a_question POST /v3/surveys/310099766/pages/{PAGE_ID}/questions Create a question
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi create_a_survey POST /v3/surveys Create a survey
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi create_a_survey_pages POST /v3/surveys/310099766/pages Create a survey pages
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi delete_a_page DELETE /v3/surveys/310099766/pages/{PAGE_ID} Delete a page
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi delete_a_question DELETE /v3/surveys/310099766/pages/{PAGE_ID}/questions/{QUESTION_ID} Delete a question
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi delete_a_survey DELETE /v3/surveys/310099766 Delete a survey
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi get_a_page_detail GET /v3/surveys/310099766/pages/{PAGE_ID} Get a page detail
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi get_a_question_detail GET /v3/surveys/310099766/pages/{PAGE_ID}/questions/{QUESTION_ID} Get a question detail
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi get_a_survey GET /v3/surveys/310099766 Get a survey
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi get_a_survey_details GET /v3/surveys/310099766/details Get a survey details
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi get_list_of_questions GET /v3/surveys/310099766/pages/{PAGE_ID}/questions Get list of questions
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi get_survey_categories GET /v3/survey_categories Get survey categories
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi get_survey_pages GET /v3/surveys/310099766/pages Get survey pages
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi get_survey_template GET /v3/survey_templates Get survey template
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi get_surveys GET /v3/surveys Get surveys
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi modify_a_page PATCH /v3/surveys/310099766/pages/{PAGE_ID} Modify a page
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi modify_a_survey PATCH /v3/surveys/310099766 Modify a survey
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi replace_a_page PUT /v3/surveys/310099766/pages/{PAGE_ID} Replace a page
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi replace_a_question PUT /v3/surveys/310099766/pages/{PAGE_ID}/questions/{QUESTION_ID} Replace a question
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi replace_a_survey PUT /v3/surveys/310099766 Replace a survey
SurveyMonkeySwaggerClient::SurveysPagesAndQuestionsApi update_a_question PATCH /v3/surveys/310099766/pages/{PAGE_ID}/questions/{QUESTION_ID} Update a question
SurveyMonkeySwaggerClient::TranslationsForMultilingualSurveysApi create_a_translation POST /v3/surveys/{survey_id}/languages/{locale} Create a translation
SurveyMonkeySwaggerClient::TranslationsForMultilingualSurveysApi get_a_survey_translation GET /v3/surveys/{survey_id}/languages Get a survey translation
SurveyMonkeySwaggerClient::TranslationsForMultilingualSurveysApi get_available_languages GET /v3/survey_languages Get available languages
SurveyMonkeySwaggerClient::TranslationsForMultilingualSurveysApi get_translation_structure GET /v3/surveys/{survey_id}/languages/{locale} Get translation structure
SurveyMonkeySwaggerClient::TranslationsForMultilingualSurveysApi modify_a_translation PATCH /v3/surveys/{survey_id}/languages/{locale} Modify a translation
SurveyMonkeySwaggerClient::UsersAndGroupsApi get_a_group_member GET /v3/groups/GROUP_ID/members/MEMBER_ID Get a group member
SurveyMonkeySwaggerClient::UsersAndGroupsApi get_group_members GET /v3/groups/GROUP_ID/members Get group members
SurveyMonkeySwaggerClient::UsersAndGroupsApi get_user_details GET /v3/users/me Get user details
SurveyMonkeySwaggerClient::UsersAndGroupsApi get_user_group GET /v3/groups Get user group
SurveyMonkeySwaggerClient::UsersAndGroupsApi get_user_group_by_id GET /v3/groups/GROUP_ID Get user group by id
SurveyMonkeySwaggerClient::WebhooksApi create_a_webhooks POST /v3/webhooks Create a webhooks
SurveyMonkeySwaggerClient::WebhooksApi delete_a_webhook DELETE /v3/webhooks/{WEBHOOK_ID} Delete a webhook
SurveyMonkeySwaggerClient::WebhooksApi get_a_list_of_webhooks GET /v3/webhooks Get a list of webhooks
SurveyMonkeySwaggerClient::WebhooksApi get_a_webhook_by_id GET /v3/webhooks/{WEBHOOK_ID} Get a webhook by id
SurveyMonkeySwaggerClient::WebhooksApi modify_a_webhook PATCH /v3/webhooks/{WEBHOOK_ID} Modify a webhook
SurveyMonkeySwaggerClient::WebhooksApi replace_a_webhook PUT /v3/webhooks/{WEBHOOK_ID} Replace a webhook

Documentation for Models

Documentation for Authorization

All endpoints do not require authorization.

About


Languages

Language:Ruby 99.8%Language:Shell 0.2%