All URIs are relative to https://signrequest.com/api/v1
| Method | HTTP request | Description |
|---|---|---|
| TemplatesList | GET /templates/ | Retrieve a list of Templates |
| TemplatesRead | GET /templates/{uuid}/ | Retrieve a Template |
InlineResponse2008 TemplatesList (int? page = null, int? limit = null)
Retrieve a list of Templates
using System;
using System.Diagnostics;
using SignRequest.Api;
using SignRequest.Client;
using SignRequest.Model;
namespace Example
{
public class TemplatesListExample
{
public void main()
{
// Configure API key authorization: Token
Configuration.Default.AddApiKey("Authorization", "YOUR_API_KEY");
Configuration.Default.AddApiKeyPrefix("Authorization", "Token");
var apiInstance = new TemplatesApi();
var page = 56; // int? | A page number within the paginated result set. (optional)
var limit = 56; // int? | Number of results to return per page. (optional)
try
{
// Retrieve a list of Templates
InlineResponse2008 result = apiInstance.TemplatesList(page, limit);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling TemplatesApi.TemplatesList: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| page | int? | A page number within the paginated result set. | [optional] |
| limit | int? | Number of results to return per page. | [optional] |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Template TemplatesRead (string uuid)
Retrieve a Template
using System;
using System.Diagnostics;
using SignRequest.Api;
using SignRequest.Client;
using SignRequest.Model;
namespace Example
{
public class TemplatesReadExample
{
public void main()
{
// Configure API key authorization: Token
Configuration.Default.AddApiKey("Authorization", "YOUR_API_KEY");
Configuration.Default.AddApiKeyPrefix("Authorization", "Token");
var apiInstance = new TemplatesApi();
var uuid = uuid_example; // string |
try
{
// Retrieve a Template
Template result = apiInstance.TemplatesRead(uuid);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling TemplatesApi.TemplatesRead: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| uuid | string |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]