docs/TemplatesApi.md in signrequest_client-0.1.0 vs docs/TemplatesApi.md in signrequest_client-1.0.0
- old
+ new
@@ -2,21 +2,21 @@
All URIs are relative to *https://signrequest.com/api/v1*
Method | HTTP request | Description
------------- | ------------- | -------------
-[**templates_list**](TemplatesApi.md#templates_list) | **GET** /templates/ |
-[**templates_read**](TemplatesApi.md#templates_read) | **GET** /templates/{uuid}/ |
+[**templates_list**](TemplatesApi.md#templates_list) | **GET** /templates/ | Retrieve a list of Templates
+[**templates_read**](TemplatesApi.md#templates_read) | **GET** /templates/{uuid}/ | Retrieve a Template
# **templates_list**
> InlineResponse2008 templates_list(opts)
+Retrieve a list of Templates
-
### Example
```ruby
# load the gem
require 'signrequest_client'
# setup authorization
@@ -33,10 +33,11 @@
page: 56, # Integer | A page number within the paginated result set.
limit: 56 # Integer | Number of results to return per page.
}
begin
+ #Retrieve a list of Templates
result = api_instance.templates_list(opts)
p result
rescue SignRequestClient::ApiError => e
puts "Exception when calling TemplatesApi->templates_list: #{e}"
end
@@ -65,14 +66,14 @@
# **templates_read**
> Template templates_read(uuid)
+Retrieve a Template
-
### Example
```ruby
# load the gem
require 'signrequest_client'
# setup authorization
@@ -87,9 +88,10 @@
uuid = "uuid_example" # String |
begin
+ #Retrieve a Template
result = api_instance.templates_read(uuid)
p result
rescue SignRequestClient::ApiError => e
puts "Exception when calling TemplatesApi->templates_read: #{e}"
end