Sha256: 0b3179de187a05e0d4be93cd47b5990de40ff43449d4c46846475a65987f5a4e
Contents?: true
Size: 965 Bytes
Versions: 1
Compression:
Stored size: 965 Bytes
Contents
using System; using System.Collections.Generic; using System.IO; using HelloSign.Api; using HelloSign.Client; using HelloSign.Model; public class Example { public static void Main() { var config = new Configuration(); // Configure HTTP basic authorization: api_key config.Username = "YOUR_API_KEY"; // or, configure Bearer (JWT) authorization: oauth2 // config.AccessToken = "YOUR_BEARER_TOKEN"; var apiInstance = new BulkSendJobApi(config); var bulkSendJobId = "6e683bc0369ba3d5b6f43c2c22a8031dbf6bd174"; try { var result = apiInstance.BulkSendJobGet(bulkSendJobId); Console.WriteLine(result); } catch (ApiException e) { Console.WriteLine("Exception when calling HelloSign API: " + e.Message); Console.WriteLine("Status Code: " + e.ErrorCode); Console.WriteLine(e.StackTrace); } } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hellosign-ruby-sdk-6.0.0.pre.beta | oas/examples/BulkSendJobGet.cs |