All URIs are relative to https://rest.clicksend.com/v3
| Method | HTTP request | Description |
|---|---|---|
| DeliveryIssuesGet | GET /delivery-issues | Get all delivery issues |
| DeliveryIssuesPost | POST /delivery-issues | Create delivery Issue |
string DeliveryIssuesGet (int? page = null, int? limit = null)
Get all delivery issues
Get all delivery issues
using System;
using System.Diagnostics;
using IO.ClickSend.ClickSend.Api;
using IO.ClickSend.Client;
using IO.ClickSend.ClickSend.Model;
namespace Example
{
public class DeliveryIssuesGetExample
{
public void main()
{
// Configure HTTP basic authorization: BasicAuth
Configuration.Default.Username = "YOUR_USERNAME";
Configuration.Default.Password = "YOUR_PASSWORD";
var apiInstance = new DeliveryIssuesApi();
var page = 56; // int? | Page number (optional) (default to 1)
var limit = 56; // int? | Number of records per page (optional) (default to 10)
try
{
// Get all delivery issues
string result = apiInstance.DeliveryIssuesGet(page, limit);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DeliveryIssuesApi.DeliveryIssuesGet: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| page | int? | Page number | [optional] [default to 1] |
| limit | int? | Number of records per page | [optional] [default to 10] |
string
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
string DeliveryIssuesPost (DeliveryIssue body)
Create delivery Issue
Create delivery Issue
using System;
using System.Diagnostics;
using IO.ClickSend.ClickSend.Api;
using IO.ClickSend.Client;
using IO.ClickSend.ClickSend.Model;
namespace Example
{
public class DeliveryIssuesPostExample
{
public void main()
{
// Configure HTTP basic authorization: BasicAuth
Configuration.Default.Username = "YOUR_USERNAME";
Configuration.Default.Password = "YOUR_PASSWORD";
var apiInstance = new DeliveryIssuesApi();
var body = new DeliveryIssue(); // DeliveryIssue | DeliveryIssue model
try
{
// Create delivery Issue
string result = apiInstance.DeliveryIssuesPost(body);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DeliveryIssuesApi.DeliveryIssuesPost: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| body | DeliveryIssue | DeliveryIssue model |
string
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]