get '/sample-13-how-to-add-collaborator-to-doc-with-annotations' do
haml :sample13
end
GET request
get '/sample-13-how-to-add-collaborator-to-doc-with-annotations' do
haml :sample13
end
POST request
post '/sample-13-how-to-add-collaborator-to-doc-with-annotations' do
Set variables
set :client_id, params[:clientId]
set :private_key, params[:privateKey]
set :file_id, params[:fileId]
set :email, params[:email]
set :base_path, params[:basePath]
begin
Check required variables
raise 'Please enter all required parameters' if settings.client_id.empty? or settings.private_key.empty? or settings.file_id.empty? or settings.email.empty?
Prepare base path
if settings.base_path.empty?
base_path = 'https://api.groupdocs.com'
elsif settings.base_path.match('/v2.0')
base_path = settings.base_path.split('/v2.0')[0]
else
base_path = settings.base_path
end
Configure your access to API server
GroupDocs.configure do |groupdocs|
groupdocs.client_id = settings.client_id
groupdocs.private_key = settings.private_key
Optionally specify API server and version
groupdocs.api_server = base_path # default is 'https://api.groupdocs.com'
end
Create document object
document = GroupDocs::Storage::File.new(guid: settings.file_id)
unless document.instance_of? String
Add collaborator to doc with annotations
result = document.to_document.set_collaborators!(settings.email.split(' '), 1)
end
rescue Exception => e
err = e.message
end
Set variables for template
haml :sample13, :locals => {:clientId => settings.client_id, :privateKey => settings.private_key, :fileId => settings.file_id, :email => settings.email, :result => result, :err => err}
end