groupdocs-signature-cloud / groupdocs-signature-cloud-ruby

Ruby SDK to communicate with the GroupDocs.Signature REST API. Add, Remove or Search for Signatures in Word, Excel, PowerPoint & PDF documents.

Home Page:https://products.groupdocs.cloud/signature/ruby

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GroupDocs.Signature Cloud Ruby SDK

Ruby gem for communicating with the GroupDocs.Signature Cloud API

Installation

A gem of groupdocs_signature_cloud is available at rubygems.org. You can install it with:

gem install groupdocs_signature_cloud

To add dependency to your app copy following into your Gemfile and run bundle install:

gem "groupdocs_signature_cloud", "~> 24.6"

Getting Started

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

# Load the gem
require 'groupdocs_signature_cloud'

# Get your app_sid and app_key at https://dashboard.groupdocs.cloud (free registration is required).
app_sid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
app_key = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"

# Create instance of the API class
api = GroupDocsSignatureCloud::InfoApi.from_keys(app_sid, app_key)

# Retrieve supported file-formats
response = api.get_supported_file_formats

# Print out supported file-formats
puts("Supported file-formats:")
response.formats.each do |format|
  puts("#{format.file_format} (#{format.extension})") 
end

Licensing

GroupDocs.Signature Cloud Ruby SDK licensed under MIT License.

Resources

Contact Us

Your feedback is very important to us. Please feel free to contact us using our Support Forums.

About

Ruby SDK to communicate with the GroupDocs.Signature REST API. Add, Remove or Search for Signatures in Word, Excel, PowerPoint & PDF documents.

https://products.groupdocs.cloud/signature/ruby

License:MIT License


Languages

Language:Ruby 100.0%