All URIs are relative to https://rest.clicksend.com/v3
| Method | HTTP request | Description |
|---|---|---|
| ReferralAccountsGet | GET /referral/accounts | Get all referral accounts |
string ReferralAccountsGet (int? page = null, int? limit = null)
Get all referral accounts
Get all referral accounts
using System;
using System.Diagnostics;
using IO.ClickSend.ClickSend.Api;
using IO.ClickSend.Client;
using IO.ClickSend.ClickSend.Model;
namespace Example
{
public class ReferralAccountsGetExample
{
public void main()
{
// Configure HTTP basic authorization: BasicAuth
Configuration.Default.Username = "YOUR_USERNAME";
Configuration.Default.Password = "YOUR_PASSWORD";
var apiInstance = new ReferralAccountApi();
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 referral accounts
string result = apiInstance.ReferralAccountsGet(page, limit);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling ReferralAccountApi.ReferralAccountsGet: " + 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]