![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
DialMyCalls - the Ruby gem for the DialMyCalls API
The DialMyCalls API
For more information, please visit https://www.dialmycalls.com
To build the Ruby code into a gem:
gem build dialmycalls_client.gemspec
Then either install the gem locally:
gem install ./dialmycalls_client-2.0.1.gem
(for development, run gem install --dev ./dialmycalls_client-2.0.1.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 'dialmycalls_client', '~> 2.0.1'
If the Ruby gem is hosted at a git repository: https://github.com/dialmycalls/ruby-sdk-v2, then add the following in the Gemfile:
gem 'dialmycalls_client', :git => 'https://github.com/dialmycalls/ruby-sdk-v2.git'
Include the Ruby code directly using -I
as follows:
ruby -Ilib script.rb
Please follow the installation procedure and then run the following code:
# Load the gem
require 'dialmycalls_client'
# Setup authorization
DialMyCalls.configure do |config|
# Configure API key authorization: api_key
config.api_key['X-Auth-ApiKey'] = 'YOUR API KEY'
end
api_instance = DialMyCalls::AccountsApi.new
create_access_account_parameters = DialMyCalls::CreateAccessAccountParameters.new # CreateAccessAccountParameters | Request body
begin
#Add Access Account
result = api_instance.create_access_account(create_access_account_parameters)
p result
rescue DialMyCalls::ApiError => e
puts "Exception when calling AccountsApi->create_access_account: #{e}"
end
All URIs are relative to https://api.dialmycalls.com/2.0
Class | Method | HTTP request | Description |
---|---|---|---|
DialMyCalls::AccountsApi | create_access_account | POST /accessaccount | Add Access Account |
DialMyCalls::AccountsApi | delete_access_account_by_id | DELETE /accessaccount/{AccessAccountId} | Delete Access Account |
DialMyCalls::AccountsApi | get_access_account_by_id | GET /accessaccount/{AccessAccountId} | Get Access Account |
DialMyCalls::AccountsApi | get_access_accounts | GET /accessaccounts | List Access Accounts |
DialMyCalls::AccountsApi | get_account | GET /account | Get Account |
DialMyCalls::AccountsApi | update_access_account_by_id | PUT /accessaccount/{AccessAccountId} | Update Access Account |
DialMyCalls::CallerIdsApi | create_caller_id | POST /callerid | Add Caller ID |
DialMyCalls::CallerIdsApi | create_unverified_caller_id | POST /verify/callerid | Add Caller ID (Unverified) |
DialMyCalls::CallerIdsApi | delete_caller_id_by_id | DELETE /callerid/{CalleridId} | Delete Caller ID |
DialMyCalls::CallerIdsApi | get_caller_id_by_id | GET /callerid/{CalleridId} | Get Caller ID |
DialMyCalls::CallerIdsApi | get_caller_ids | GET /callerids | List Caller IDs |
DialMyCalls::CallerIdsApi | update_caller_id_by_id | PUT /callerid/{CalleridId} | Update Caller ID |
DialMyCalls::CallerIdsApi | verify_caller_id_by_id | PUT /verify/callerid/{CalleridId} | Verify Caller ID |
DialMyCalls::CallsApi | cancel_call_by_id | DELETE /service/call/{CallId} | Cancel Call |
DialMyCalls::CallsApi | create_call | POST /service/call | Create Call |
DialMyCalls::CallsApi | get_call_by_id | GET /service/call/{CallId} | Get Call |
DialMyCalls::CallsApi | get_call_recipients_by_call_id | GET /service/call/{CallId}/recipients | Get Call Recipients |
DialMyCalls::CallsApi | get_calls | GET /service/calls | List Calls |
DialMyCalls::ContactsApi | create_contact | POST /contact | Add Contact |
DialMyCalls::ContactsApi | delete_contact_by_id | DELETE /contact/{ContactId} | Delete Contact |
DialMyCalls::ContactsApi | get_contact_by_id | GET /contact/{ContactId} | Get Contact |
DialMyCalls::ContactsApi | get_contacts | GET /contacts | List Contacts |
DialMyCalls::ContactsApi | get_contacts_by_group_id | GET /contacts/{GroupId} | List Contacts in Group |
DialMyCalls::ContactsApi | update_contact_by_id | PUT /contact/{ContactId} | Update Contact |
DialMyCalls::DoNotContactsApi | get_do_not_contacts | GET /donotcontacts | List DoNotContacts |
DialMyCalls::GroupsApi | create_group | POST /group | Add Group |
DialMyCalls::GroupsApi | delete_group_by_id | DELETE /group/{GroupId} | Delete Group |
DialMyCalls::GroupsApi | get_group_by_id | GET /group/{GroupId} | Get Group |
DialMyCalls::GroupsApi | get_groups | GET /groups | List Groups |
DialMyCalls::GroupsApi | update_group_by_id | PUT /group/{GroupId} | Update Group |
DialMyCalls::KeywordsApi | delete_keyword_by_id | DELETE /keyword/{KeywordId} | Delete Keyword |
DialMyCalls::KeywordsApi | get_keyword_by_id | GET /keyword/{KeywordId} | Get Keyword |
DialMyCalls::KeywordsApi | get_keywords | GET /keywords | List Keywords |
DialMyCalls::RecordingsApi | create_recording | POST /recording/tts | Create Recording (Text-to-Speech) |
DialMyCalls::RecordingsApi | create_recording_by_phone | POST /recording/phone | Create Recording (Phone) |
DialMyCalls::RecordingsApi | create_recording_by_url | POST /recording/url | Create Recording (URL) |
DialMyCalls::RecordingsApi | delete_recording_by_id | DELETE /recording/{RecordingId} | Delete Recording |
DialMyCalls::RecordingsApi | get_recording_by_id | GET /recording/{RecordingId} | Get Recording |
DialMyCalls::RecordingsApi | get_recordings | GET /recordings | List Recordings |
DialMyCalls::RecordingsApi | update_recording_by_id | PUT /recording/{RecordingId} | Update Recording |
DialMyCalls::TextsApi | cancel_text_by_id | DELETE /service/text/{TextId} | Cancel Text |
DialMyCalls::TextsApi | create_text | POST /service/text | Create Text |
DialMyCalls::TextsApi | delete_incoming_text_by_id | DELETE /incoming/text/{TextId} | Delete Incoming Text |
DialMyCalls::TextsApi | get_incoming_text_by_id | GET /incoming/text/{TextId} | Get Incoming Text |
DialMyCalls::TextsApi | get_incoming_texts | GET /incoming/texts | List Incoming Texts |
DialMyCalls::TextsApi | get_short_codes | GET /shortcodes | List Shortcodes |
DialMyCalls::TextsApi | get_text_by_id | GET /service/text/{TextId} | Get Text |
DialMyCalls::TextsApi | get_text_recipients_by_text_id | GET /service/text/{TextId}/recipients | Get Text Recipients |
DialMyCalls::TextsApi | get_texts | GET /service/texts | List Texts |
DialMyCalls::VanityNumbersApi | delete_vanity_number_by_id | DELETE /vanitynumber/{VanityNumberId} | Delete Vanity Number |
DialMyCalls::VanityNumbersApi | get_vanity_number_by_id | GET /vanitynumber/{VanityNumberId} | Get Vanity Number |
DialMyCalls::VanityNumbersApi | get_vanity_numbers | GET /vanitynumbers | List Vanity Numbers |
DialMyCalls::VanityNumbersApi | update_vanity_number_by_id | PUT /vanitynumber/{VanityNumberId} | Update Vanity Number |
FAQs
Unknown package
We found that dialmycalls_client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.