All URIs are relative to https://us1.pdfgeneratorapi.com/api/v4
Method | HTTP request | Description |
---|---|---|
create_from | POST /forms | Create form |
delete_form | DELETE /forms/{formId} | Delete form |
get_form | GET /forms/{formId} | Get form |
get_forms | GET /forms | Get forms |
share_form | POST /forms/{formId}/share | Share form |
update_form | PUT /forms/{formId} | Update form |
create_from(form_configuration_new)
Create form
Creates a new form based on the configuration sent in the request body.
require 'time'
require 'pdf_generator_api_client'
# setup authorization
PDFGeneratorAPI.configure do |config|
# Configure Bearer authorization (JWT): JSONWebTokenAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = PDFGeneratorAPI::FormsApi.new
form_configuration_new = PDFGeneratorAPI::FormConfigurationNew.new # FormConfigurationNew | Form configuration
begin
# Create form
result = api_instance.create_from(form_configuration_new)
p result
rescue PDFGeneratorAPI::ApiError => e
puts "Error when calling FormsApi->create_from: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> create_from_with_http_info(form_configuration_new)
begin
# Create form
data, status_code, headers = api_instance.create_from_with_http_info(form_configuration_new)
p status_code # => 2xx
p headers # => { ... }
p data # => <CreateFrom201Response>
rescue PDFGeneratorAPI::ApiError => e
puts "Error when calling FormsApi->create_from_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
form_configuration_new | FormConfigurationNew | Form configuration |
- Content-Type: application/json
- Accept: application/json
delete_form(form_id)
Delete form
Deletes the form with specified id
require 'time'
require 'pdf_generator_api_client'
# setup authorization
PDFGeneratorAPI.configure do |config|
# Configure Bearer authorization (JWT): JSONWebTokenAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = PDFGeneratorAPI::FormsApi.new
form_id = 1 # Integer | Form unique identifier
begin
# Delete form
api_instance.delete_form(form_id)
rescue PDFGeneratorAPI::ApiError => e
puts "Error when calling FormsApi->delete_form: #{e}"
end
This returns an Array which contains the response data (nil
in this case), status code and headers.
<Array(nil, Integer, Hash)> delete_form_with_http_info(form_id)
begin
# Delete form
data, status_code, headers = api_instance.delete_form_with_http_info(form_id)
p status_code # => 2xx
p headers # => { ... }
p data # => nil
rescue PDFGeneratorAPI::ApiError => e
puts "Error when calling FormsApi->delete_form_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
form_id | Integer | Form unique identifier |
nil (empty response body)
- Content-Type: Not defined
- Accept: application/json
get_form(form_id)
Get form
Returns form configuration
require 'time'
require 'pdf_generator_api_client'
# setup authorization
PDFGeneratorAPI.configure do |config|
# Configure Bearer authorization (JWT): JSONWebTokenAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = PDFGeneratorAPI::FormsApi.new
form_id = 1 # Integer | Form unique identifier
begin
# Get form
result = api_instance.get_form(form_id)
p result
rescue PDFGeneratorAPI::ApiError => e
puts "Error when calling FormsApi->get_form: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> get_form_with_http_info(form_id)
begin
# Get form
data, status_code, headers = api_instance.get_form_with_http_info(form_id)
p status_code # => 2xx
p headers # => { ... }
p data # => <CreateFrom201Response>
rescue PDFGeneratorAPI::ApiError => e
puts "Error when calling FormsApi->get_form_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
form_id | Integer | Form unique identifier |
- Content-Type: Not defined
- Accept: application/json
get_forms(opts)
Get forms
Returns a list of forms available for the organization
require 'time'
require 'pdf_generator_api_client'
# setup authorization
PDFGeneratorAPI.configure do |config|
# Configure Bearer authorization (JWT): JSONWebTokenAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = PDFGeneratorAPI::FormsApi.new
opts = {
page: 1, # Integer | Pagination: page to return
per_page: 20 # Integer | Pagination: How many records to return per page
}
begin
# Get forms
result = api_instance.get_forms(opts)
p result
rescue PDFGeneratorAPI::ApiError => e
puts "Error when calling FormsApi->get_forms: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> get_forms_with_http_info(opts)
begin
# Get forms
data, status_code, headers = api_instance.get_forms_with_http_info(opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <GetForms200Response>
rescue PDFGeneratorAPI::ApiError => e
puts "Error when calling FormsApi->get_forms_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
page | Integer | Pagination: page to return | [optional][default to 1] |
per_page | Integer | Pagination: How many records to return per page | [optional][default to 15] |
- Content-Type: Not defined
- Accept: application/json
share_form(form_id)
Share form
Creates an unique sharing URL to collect form data
require 'time'
require 'pdf_generator_api_client'
# setup authorization
PDFGeneratorAPI.configure do |config|
# Configure Bearer authorization (JWT): JSONWebTokenAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = PDFGeneratorAPI::FormsApi.new
form_id = 1 # Integer | Form unique identifier
begin
# Share form
result = api_instance.share_form(form_id)
p result
rescue PDFGeneratorAPI::ApiError => e
puts "Error when calling FormsApi->share_form: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> share_form_with_http_info(form_id)
begin
# Share form
data, status_code, headers = api_instance.share_form_with_http_info(form_id)
p status_code # => 2xx
p headers # => { ... }
p data # => <ShareForm201Response>
rescue PDFGeneratorAPI::ApiError => e
puts "Error when calling FormsApi->share_form_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
form_id | Integer | Form unique identifier |
- Content-Type: Not defined
- Accept: application/json
update_form(form_id, form_configuration_new)
Update form
Updates the form configuration. The form configuration must be complete as the entire configuration is replaced and not merged.
require 'time'
require 'pdf_generator_api_client'
# setup authorization
PDFGeneratorAPI.configure do |config|
# Configure Bearer authorization (JWT): JSONWebTokenAuth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = PDFGeneratorAPI::FormsApi.new
form_id = 1 # Integer | Form unique identifier
form_configuration_new = PDFGeneratorAPI::FormConfigurationNew.new # FormConfigurationNew | Form configuration
begin
# Update form
result = api_instance.update_form(form_id, form_configuration_new)
p result
rescue PDFGeneratorAPI::ApiError => e
puts "Error when calling FormsApi->update_form: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> update_form_with_http_info(form_id, form_configuration_new)
begin
# Update form
data, status_code, headers = api_instance.update_form_with_http_info(form_id, form_configuration_new)
p status_code # => 2xx
p headers # => { ... }
p data # => <CreateFrom201Response>
rescue PDFGeneratorAPI::ApiError => e
puts "Error when calling FormsApi->update_form_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
form_id | Integer | Form unique identifier | |
form_configuration_new | FormConfigurationNew | Form configuration |
- Content-Type: application/json
- Accept: application/json