All URIs are relative to https://rest.clicksend.com/v3
Method | HTTP request | Description |
---|---|---|
DetectAddressPost | POST /post/letters/detect-address | Detects address in uploaded file. |
string DetectAddressPost (UploadFile body)
Detects address in uploaded file.
Detects address in uploaded file.
using System;
using System.Diagnostics;
using IO.ClickSend.ClickSend.Api;
using IO.ClickSend.Client;
using IO.ClickSend.ClickSend.Model;
namespace Example
{
public class DetectAddressPostExample
{
public void main()
{
// Configure HTTP basic authorization: BasicAuth
Configuration.Default.Username = "YOUR_USERNAME";
Configuration.Default.Password = "YOUR_PASSWORD";
var apiInstance = new DetectAddressApi();
var body = new UploadFile(); // UploadFile | Your file to be uploaded
try
{
// Detects address in uploaded file.
string result = apiInstance.DetectAddressPost(body);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DetectAddressApi.DetectAddressPost: " + e.Message );
}
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
body | UploadFile | Your file to be uploaded |
string
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]