AS Server - API - CustomerStatements

Default

customerStatementsGet

CustomerStatements_Get


/CustomerStatements/

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/CustomerStatements/?filter.requestedList=56&filter.sortField=filterPeriodsortField_example&filter.searchString=filterPeriodsearchString_example&filter.sortAsc=true&filter.startRow=56&filter.maxResults=56"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer filterPeriodrequestedList = 56; // Integer | 
        String filterPeriodsortField = filterPeriodsortField_example; // String | 
        String filterPeriodsearchString = filterPeriodsearchString_example; // String | 
        Boolean filterPeriodsortAsc = true; // Boolean | 
        Integer filterPeriodstartRow = 56; // Integer | 
        Integer filterPeriodmaxResults = 56; // Integer | 

        try {
            PagedActionResults_CustomerStatementSummaries_ result = apiInstance.customerStatementsGet(filterPeriodrequestedList, filterPeriodsortField, filterPeriodsearchString, filterPeriodsortAsc, filterPeriodstartRow, filterPeriodmaxResults);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Integer filterPeriodrequestedList = new Integer(); // Integer | 
final String filterPeriodsortField = new String(); // String | 
final String filterPeriodsearchString = new String(); // String | 
final Boolean filterPeriodsortAsc = new Boolean(); // Boolean | 
final Integer filterPeriodstartRow = new Integer(); // Integer | 
final Integer filterPeriodmaxResults = new Integer(); // Integer | 

try {
    final result = await api_instance.customerStatementsGet(filterPeriodrequestedList, filterPeriodsortField, filterPeriodsearchString, filterPeriodsortAsc, filterPeriodstartRow, filterPeriodmaxResults);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->customerStatementsGet: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer filterPeriodrequestedList = 56; // Integer | 
        String filterPeriodsortField = filterPeriodsortField_example; // String | 
        String filterPeriodsearchString = filterPeriodsearchString_example; // String | 
        Boolean filterPeriodsortAsc = true; // Boolean | 
        Integer filterPeriodstartRow = 56; // Integer | 
        Integer filterPeriodmaxResults = 56; // Integer | 

        try {
            PagedActionResults_CustomerStatementSummaries_ result = apiInstance.customerStatementsGet(filterPeriodrequestedList, filterPeriodsortField, filterPeriodsearchString, filterPeriodsortAsc, filterPeriodstartRow, filterPeriodmaxResults);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *filterPeriodrequestedList = 56; //  (optional) (default to null)
String *filterPeriodsortField = filterPeriodsortField_example; //  (optional) (default to null)
String *filterPeriodsearchString = filterPeriodsearchString_example; //  (optional) (default to null)
Boolean *filterPeriodsortAsc = true; //  (optional) (default to null)
Integer *filterPeriodstartRow = 56; //  (optional) (default to null)
Integer *filterPeriodmaxResults = 56; //  (optional) (default to null)

// CustomerStatements_Get
[apiInstance customerStatementsGetWith:filterPeriodrequestedList
    filterPeriodsortField:filterPeriodsortField
    filterPeriodsearchString:filterPeriodsearchString
    filterPeriodsortAsc:filterPeriodsortAsc
    filterPeriodstartRow:filterPeriodstartRow
    filterPeriodmaxResults:filterPeriodmaxResults
              completionHandler: ^(PagedActionResults_CustomerStatementSummaries_ output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiCustomerStatements = require('as_server_api_customer_statements');

// Create an instance of the API class
var api = new AsServerApiCustomerStatements.DefaultApi()
var opts = {
  'filterPeriodrequestedList': 56, // {Integer} 
  'filterPeriodsortField': filterPeriodsortField_example, // {String} 
  'filterPeriodsearchString': filterPeriodsearchString_example, // {String} 
  'filterPeriodsortAsc': true, // {Boolean} 
  'filterPeriodstartRow': 56, // {Integer} 
  'filterPeriodmaxResults': 56 // {Integer} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.customerStatementsGet(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class customerStatementsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var filterPeriodrequestedList = 56;  // Integer |  (optional)  (default to null)
            var filterPeriodsortField = filterPeriodsortField_example;  // String |  (optional)  (default to null)
            var filterPeriodsearchString = filterPeriodsearchString_example;  // String |  (optional)  (default to null)
            var filterPeriodsortAsc = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodstartRow = 56;  // Integer |  (optional)  (default to null)
            var filterPeriodmaxResults = 56;  // Integer |  (optional)  (default to null)

            try {
                // CustomerStatements_Get
                PagedActionResults_CustomerStatementSummaries_ result = apiInstance.customerStatementsGet(filterPeriodrequestedList, filterPeriodsortField, filterPeriodsearchString, filterPeriodsortAsc, filterPeriodstartRow, filterPeriodmaxResults);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.customerStatementsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$filterPeriodrequestedList = 56; // Integer | 
$filterPeriodsortField = filterPeriodsortField_example; // String | 
$filterPeriodsearchString = filterPeriodsearchString_example; // String | 
$filterPeriodsortAsc = true; // Boolean | 
$filterPeriodstartRow = 56; // Integer | 
$filterPeriodmaxResults = 56; // Integer | 

try {
    $result = $api_instance->customerStatementsGet($filterPeriodrequestedList, $filterPeriodsortField, $filterPeriodsearchString, $filterPeriodsortAsc, $filterPeriodstartRow, $filterPeriodmaxResults);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->customerStatementsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $filterPeriodrequestedList = 56; # Integer | 
my $filterPeriodsortField = filterPeriodsortField_example; # String | 
my $filterPeriodsearchString = filterPeriodsearchString_example; # String | 
my $filterPeriodsortAsc = true; # Boolean | 
my $filterPeriodstartRow = 56; # Integer | 
my $filterPeriodmaxResults = 56; # Integer | 

eval {
    my $result = $api_instance->customerStatementsGet(filterPeriodrequestedList => $filterPeriodrequestedList, filterPeriodsortField => $filterPeriodsortField, filterPeriodsearchString => $filterPeriodsearchString, filterPeriodsortAsc => $filterPeriodsortAsc, filterPeriodstartRow => $filterPeriodstartRow, filterPeriodmaxResults => $filterPeriodmaxResults);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->customerStatementsGet: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
filterPeriodrequestedList = 56 # Integer |  (optional) (default to null)
filterPeriodsortField = filterPeriodsortField_example # String |  (optional) (default to null)
filterPeriodsearchString = filterPeriodsearchString_example # String |  (optional) (default to null)
filterPeriodsortAsc = true # Boolean |  (optional) (default to null)
filterPeriodstartRow = 56 # Integer |  (optional) (default to null)
filterPeriodmaxResults = 56 # Integer |  (optional) (default to null)

try:
    # CustomerStatements_Get
    api_response = api_instance.customer_statements_get(filterPeriodrequestedList=filterPeriodrequestedList, filterPeriodsortField=filterPeriodsortField, filterPeriodsearchString=filterPeriodsearchString, filterPeriodsortAsc=filterPeriodsortAsc, filterPeriodstartRow=filterPeriodstartRow, filterPeriodmaxResults=filterPeriodmaxResults)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->customerStatementsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let filterPeriodrequestedList = 56; // Integer
    let filterPeriodsortField = filterPeriodsortField_example; // String
    let filterPeriodsearchString = filterPeriodsearchString_example; // String
    let filterPeriodsortAsc = true; // Boolean
    let filterPeriodstartRow = 56; // Integer
    let filterPeriodmaxResults = 56; // Integer

    let mut context = DefaultApi::Context::default();
    let result = client.customerStatementsGet(filterPeriodrequestedList, filterPeriodsortField, filterPeriodsearchString, filterPeriodsortAsc, filterPeriodstartRow, filterPeriodmaxResults, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
filter.requestedList
Integer (int32)
filter.sortField
String
filter.searchString
String
filter.sortAsc
Boolean
filter.startRow
Integer (int32)
filter.maxResults
Integer (int32)

Responses


customerStatementsGetCreditNote

CustomerStatements_GetCreditNote


/CustomerStatements/creditnote

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/CustomerStatements/creditnote?req.transID=56&req.transactionGuid=38400000-8cf0-11bd-b23e-10b96e4ef00d&req.merchantCustomerID=56&req.isShowSummaryLines=true"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer reqPeriodtransID = 56; // Integer | 
        UUID reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
        Integer reqPeriodmerchantCustomerID = 56; // Integer | 
        Boolean reqPeriodisShowSummaryLines = true; // Boolean | 

        try {
            CreditNoteT result = apiInstance.customerStatementsGetCreditNote(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGetCreditNote");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Integer reqPeriodtransID = new Integer(); // Integer | 
final UUID reqPeriodtransactionGuid = new UUID(); // UUID | 
final Integer reqPeriodmerchantCustomerID = new Integer(); // Integer | 
final Boolean reqPeriodisShowSummaryLines = new Boolean(); // Boolean | 

try {
    final result = await api_instance.customerStatementsGetCreditNote(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->customerStatementsGetCreditNote: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer reqPeriodtransID = 56; // Integer | 
        UUID reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
        Integer reqPeriodmerchantCustomerID = 56; // Integer | 
        Boolean reqPeriodisShowSummaryLines = true; // Boolean | 

        try {
            CreditNoteT result = apiInstance.customerStatementsGetCreditNote(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGetCreditNote");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *reqPeriodtransID = 56; //  (optional) (default to null)
UUID *reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; //  (optional) (default to null)
Integer *reqPeriodmerchantCustomerID = 56; //  (optional) (default to null)
Boolean *reqPeriodisShowSummaryLines = true; //  (optional) (default to null)

// CustomerStatements_GetCreditNote
[apiInstance customerStatementsGetCreditNoteWith:reqPeriodtransID
    reqPeriodtransactionGuid:reqPeriodtransactionGuid
    reqPeriodmerchantCustomerID:reqPeriodmerchantCustomerID
    reqPeriodisShowSummaryLines:reqPeriodisShowSummaryLines
              completionHandler: ^(CreditNoteT output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiCustomerStatements = require('as_server_api_customer_statements');

// Create an instance of the API class
var api = new AsServerApiCustomerStatements.DefaultApi()
var opts = {
  'reqPeriodtransID': 56, // {Integer} 
  'reqPeriodtransactionGuid': 38400000-8cf0-11bd-b23e-10b96e4ef00d, // {UUID} 
  'reqPeriodmerchantCustomerID': 56, // {Integer} 
  'reqPeriodisShowSummaryLines': true // {Boolean} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.customerStatementsGetCreditNote(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class customerStatementsGetCreditNoteExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var reqPeriodtransID = 56;  // Integer |  (optional)  (default to null)
            var reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d;  // UUID |  (optional)  (default to null)
            var reqPeriodmerchantCustomerID = 56;  // Integer |  (optional)  (default to null)
            var reqPeriodisShowSummaryLines = true;  // Boolean |  (optional)  (default to null)

            try {
                // CustomerStatements_GetCreditNote
                CreditNoteT result = apiInstance.customerStatementsGetCreditNote(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.customerStatementsGetCreditNote: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$reqPeriodtransID = 56; // Integer | 
$reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
$reqPeriodmerchantCustomerID = 56; // Integer | 
$reqPeriodisShowSummaryLines = true; // Boolean | 

try {
    $result = $api_instance->customerStatementsGetCreditNote($reqPeriodtransID, $reqPeriodtransactionGuid, $reqPeriodmerchantCustomerID, $reqPeriodisShowSummaryLines);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->customerStatementsGetCreditNote: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $reqPeriodtransID = 56; # Integer | 
my $reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; # UUID | 
my $reqPeriodmerchantCustomerID = 56; # Integer | 
my $reqPeriodisShowSummaryLines = true; # Boolean | 

eval {
    my $result = $api_instance->customerStatementsGetCreditNote(reqPeriodtransID => $reqPeriodtransID, reqPeriodtransactionGuid => $reqPeriodtransactionGuid, reqPeriodmerchantCustomerID => $reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines => $reqPeriodisShowSummaryLines);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->customerStatementsGetCreditNote: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
reqPeriodtransID = 56 # Integer |  (optional) (default to null)
reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d # UUID |  (optional) (default to null)
reqPeriodmerchantCustomerID = 56 # Integer |  (optional) (default to null)
reqPeriodisShowSummaryLines = true # Boolean |  (optional) (default to null)

try:
    # CustomerStatements_GetCreditNote
    api_response = api_instance.customer_statements_get_credit_note(reqPeriodtransID=reqPeriodtransID, reqPeriodtransactionGuid=reqPeriodtransactionGuid, reqPeriodmerchantCustomerID=reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines=reqPeriodisShowSummaryLines)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->customerStatementsGetCreditNote: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let reqPeriodtransID = 56; // Integer
    let reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID
    let reqPeriodmerchantCustomerID = 56; // Integer
    let reqPeriodisShowSummaryLines = true; // Boolean

    let mut context = DefaultApi::Context::default();
    let result = client.customerStatementsGetCreditNote(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
req.transID
Integer (int32)
req.transactionGuid
UUID (uuid)
req.merchantCustomerID
Integer (int32)
req.isShowSummaryLines
Boolean

Responses


customerStatementsGetCreditNoteAlert

CustomerStatements_GetCreditNoteAlert


/CustomerStatements/creditnote/alert

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/CustomerStatements/creditnote/alert?req.transID=56&req.transactionGuid=38400000-8cf0-11bd-b23e-10b96e4ef00d&req.merchantCustomerID=56&req.isShowSummaryLines=true"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer reqPeriodtransID = 56; // Integer | 
        UUID reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
        Integer reqPeriodmerchantCustomerID = 56; // Integer | 
        Boolean reqPeriodisShowSummaryLines = true; // Boolean | 

        try {
            ActionResults_AlertInfo_ result = apiInstance.customerStatementsGetCreditNoteAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGetCreditNoteAlert");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Integer reqPeriodtransID = new Integer(); // Integer | 
final UUID reqPeriodtransactionGuid = new UUID(); // UUID | 
final Integer reqPeriodmerchantCustomerID = new Integer(); // Integer | 
final Boolean reqPeriodisShowSummaryLines = new Boolean(); // Boolean | 

try {
    final result = await api_instance.customerStatementsGetCreditNoteAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->customerStatementsGetCreditNoteAlert: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer reqPeriodtransID = 56; // Integer | 
        UUID reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
        Integer reqPeriodmerchantCustomerID = 56; // Integer | 
        Boolean reqPeriodisShowSummaryLines = true; // Boolean | 

        try {
            ActionResults_AlertInfo_ result = apiInstance.customerStatementsGetCreditNoteAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGetCreditNoteAlert");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *reqPeriodtransID = 56; //  (optional) (default to null)
UUID *reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; //  (optional) (default to null)
Integer *reqPeriodmerchantCustomerID = 56; //  (optional) (default to null)
Boolean *reqPeriodisShowSummaryLines = true; //  (optional) (default to null)

// CustomerStatements_GetCreditNoteAlert
[apiInstance customerStatementsGetCreditNoteAlertWith:reqPeriodtransID
    reqPeriodtransactionGuid:reqPeriodtransactionGuid
    reqPeriodmerchantCustomerID:reqPeriodmerchantCustomerID
    reqPeriodisShowSummaryLines:reqPeriodisShowSummaryLines
              completionHandler: ^(ActionResults_AlertInfo_ output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiCustomerStatements = require('as_server_api_customer_statements');

// Create an instance of the API class
var api = new AsServerApiCustomerStatements.DefaultApi()
var opts = {
  'reqPeriodtransID': 56, // {Integer} 
  'reqPeriodtransactionGuid': 38400000-8cf0-11bd-b23e-10b96e4ef00d, // {UUID} 
  'reqPeriodmerchantCustomerID': 56, // {Integer} 
  'reqPeriodisShowSummaryLines': true // {Boolean} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.customerStatementsGetCreditNoteAlert(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class customerStatementsGetCreditNoteAlertExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var reqPeriodtransID = 56;  // Integer |  (optional)  (default to null)
            var reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d;  // UUID |  (optional)  (default to null)
            var reqPeriodmerchantCustomerID = 56;  // Integer |  (optional)  (default to null)
            var reqPeriodisShowSummaryLines = true;  // Boolean |  (optional)  (default to null)

            try {
                // CustomerStatements_GetCreditNoteAlert
                ActionResults_AlertInfo_ result = apiInstance.customerStatementsGetCreditNoteAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.customerStatementsGetCreditNoteAlert: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$reqPeriodtransID = 56; // Integer | 
$reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
$reqPeriodmerchantCustomerID = 56; // Integer | 
$reqPeriodisShowSummaryLines = true; // Boolean | 

try {
    $result = $api_instance->customerStatementsGetCreditNoteAlert($reqPeriodtransID, $reqPeriodtransactionGuid, $reqPeriodmerchantCustomerID, $reqPeriodisShowSummaryLines);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->customerStatementsGetCreditNoteAlert: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $reqPeriodtransID = 56; # Integer | 
my $reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; # UUID | 
my $reqPeriodmerchantCustomerID = 56; # Integer | 
my $reqPeriodisShowSummaryLines = true; # Boolean | 

eval {
    my $result = $api_instance->customerStatementsGetCreditNoteAlert(reqPeriodtransID => $reqPeriodtransID, reqPeriodtransactionGuid => $reqPeriodtransactionGuid, reqPeriodmerchantCustomerID => $reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines => $reqPeriodisShowSummaryLines);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->customerStatementsGetCreditNoteAlert: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
reqPeriodtransID = 56 # Integer |  (optional) (default to null)
reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d # UUID |  (optional) (default to null)
reqPeriodmerchantCustomerID = 56 # Integer |  (optional) (default to null)
reqPeriodisShowSummaryLines = true # Boolean |  (optional) (default to null)

try:
    # CustomerStatements_GetCreditNoteAlert
    api_response = api_instance.customer_statements_get_credit_note_alert(reqPeriodtransID=reqPeriodtransID, reqPeriodtransactionGuid=reqPeriodtransactionGuid, reqPeriodmerchantCustomerID=reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines=reqPeriodisShowSummaryLines)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->customerStatementsGetCreditNoteAlert: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let reqPeriodtransID = 56; // Integer
    let reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID
    let reqPeriodmerchantCustomerID = 56; // Integer
    let reqPeriodisShowSummaryLines = true; // Boolean

    let mut context = DefaultApi::Context::default();
    let result = client.customerStatementsGetCreditNoteAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
req.transID
Integer (int32)
req.transactionGuid
UUID (uuid)
req.merchantCustomerID
Integer (int32)
req.isShowSummaryLines
Boolean

Responses


customerStatementsGetCustomerStatements

CustomerStatements_GetCustomerStatements


/CustomerStatements/customer/{id}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/CustomerStatements/customer/{id}?filter.requestedList=56&filter.startDate=2013-10-20T19:20:30+01:00&filter.endDate=2013-10-20T19:20:30+01:00&filter.customerId=56&filter.customerUtcOffset=56&filter.sortField=filterPeriodsortField_example&filter.searchString=filterPeriodsearchString_example&filter.sortAsc=true&filter.startRow=56&filter.maxResults=56"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer id = 56; // Integer | 
        Integer filterPeriodrequestedList = 56; // Integer | 
        Date filterPeriodstartDate = 2013-10-20T19:20:30+01:00; // Date | 
        Date filterPeriodendDate = 2013-10-20T19:20:30+01:00; // Date | 
        Integer filterPeriodcustomerId = 56; // Integer | 
        Integer filterPeriodcustomerUtcOffset = 56; // Integer | 
        String filterPeriodsortField = filterPeriodsortField_example; // String | 
        String filterPeriodsearchString = filterPeriodsearchString_example; // String | 
        Boolean filterPeriodsortAsc = true; // Boolean | 
        Integer filterPeriodstartRow = 56; // Integer | 
        Integer filterPeriodmaxResults = 56; // Integer | 

        try {
            PagedActionResults_CustomerStatements_ result = apiInstance.customerStatementsGetCustomerStatements(id, filterPeriodrequestedList, filterPeriodstartDate, filterPeriodendDate, filterPeriodcustomerId, filterPeriodcustomerUtcOffset, filterPeriodsortField, filterPeriodsearchString, filterPeriodsortAsc, filterPeriodstartRow, filterPeriodmaxResults);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGetCustomerStatements");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Integer id = new Integer(); // Integer | 
final Integer filterPeriodrequestedList = new Integer(); // Integer | 
final Date filterPeriodstartDate = new Date(); // Date | 
final Date filterPeriodendDate = new Date(); // Date | 
final Integer filterPeriodcustomerId = new Integer(); // Integer | 
final Integer filterPeriodcustomerUtcOffset = new Integer(); // Integer | 
final String filterPeriodsortField = new String(); // String | 
final String filterPeriodsearchString = new String(); // String | 
final Boolean filterPeriodsortAsc = new Boolean(); // Boolean | 
final Integer filterPeriodstartRow = new Integer(); // Integer | 
final Integer filterPeriodmaxResults = new Integer(); // Integer | 

try {
    final result = await api_instance.customerStatementsGetCustomerStatements(id, filterPeriodrequestedList, filterPeriodstartDate, filterPeriodendDate, filterPeriodcustomerId, filterPeriodcustomerUtcOffset, filterPeriodsortField, filterPeriodsearchString, filterPeriodsortAsc, filterPeriodstartRow, filterPeriodmaxResults);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->customerStatementsGetCustomerStatements: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer id = 56; // Integer | 
        Integer filterPeriodrequestedList = 56; // Integer | 
        Date filterPeriodstartDate = 2013-10-20T19:20:30+01:00; // Date | 
        Date filterPeriodendDate = 2013-10-20T19:20:30+01:00; // Date | 
        Integer filterPeriodcustomerId = 56; // Integer | 
        Integer filterPeriodcustomerUtcOffset = 56; // Integer | 
        String filterPeriodsortField = filterPeriodsortField_example; // String | 
        String filterPeriodsearchString = filterPeriodsearchString_example; // String | 
        Boolean filterPeriodsortAsc = true; // Boolean | 
        Integer filterPeriodstartRow = 56; // Integer | 
        Integer filterPeriodmaxResults = 56; // Integer | 

        try {
            PagedActionResults_CustomerStatements_ result = apiInstance.customerStatementsGetCustomerStatements(id, filterPeriodrequestedList, filterPeriodstartDate, filterPeriodendDate, filterPeriodcustomerId, filterPeriodcustomerUtcOffset, filterPeriodsortField, filterPeriodsearchString, filterPeriodsortAsc, filterPeriodstartRow, filterPeriodmaxResults);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGetCustomerStatements");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *id = 56; //  (default to null)
Integer *filterPeriodrequestedList = 56; //  (optional) (default to null)
Date *filterPeriodstartDate = 2013-10-20T19:20:30+01:00; //  (optional) (default to null)
Date *filterPeriodendDate = 2013-10-20T19:20:30+01:00; //  (optional) (default to null)
Integer *filterPeriodcustomerId = 56; //  (optional) (default to null)
Integer *filterPeriodcustomerUtcOffset = 56; //  (optional) (default to null)
String *filterPeriodsortField = filterPeriodsortField_example; //  (optional) (default to null)
String *filterPeriodsearchString = filterPeriodsearchString_example; //  (optional) (default to null)
Boolean *filterPeriodsortAsc = true; //  (optional) (default to null)
Integer *filterPeriodstartRow = 56; //  (optional) (default to null)
Integer *filterPeriodmaxResults = 56; //  (optional) (default to null)

// CustomerStatements_GetCustomerStatements
[apiInstance customerStatementsGetCustomerStatementsWith:id
    filterPeriodrequestedList:filterPeriodrequestedList
    filterPeriodstartDate:filterPeriodstartDate
    filterPeriodendDate:filterPeriodendDate
    filterPeriodcustomerId:filterPeriodcustomerId
    filterPeriodcustomerUtcOffset:filterPeriodcustomerUtcOffset
    filterPeriodsortField:filterPeriodsortField
    filterPeriodsearchString:filterPeriodsearchString
    filterPeriodsortAsc:filterPeriodsortAsc
    filterPeriodstartRow:filterPeriodstartRow
    filterPeriodmaxResults:filterPeriodmaxResults
              completionHandler: ^(PagedActionResults_CustomerStatements_ output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiCustomerStatements = require('as_server_api_customer_statements');

// Create an instance of the API class
var api = new AsServerApiCustomerStatements.DefaultApi()
var id = 56; // {Integer} 
var opts = {
  'filterPeriodrequestedList': 56, // {Integer} 
  'filterPeriodstartDate': 2013-10-20T19:20:30+01:00, // {Date} 
  'filterPeriodendDate': 2013-10-20T19:20:30+01:00, // {Date} 
  'filterPeriodcustomerId': 56, // {Integer} 
  'filterPeriodcustomerUtcOffset': 56, // {Integer} 
  'filterPeriodsortField': filterPeriodsortField_example, // {String} 
  'filterPeriodsearchString': filterPeriodsearchString_example, // {String} 
  'filterPeriodsortAsc': true, // {Boolean} 
  'filterPeriodstartRow': 56, // {Integer} 
  'filterPeriodmaxResults': 56 // {Integer} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.customerStatementsGetCustomerStatements(id, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class customerStatementsGetCustomerStatementsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var id = 56;  // Integer |  (default to null)
            var filterPeriodrequestedList = 56;  // Integer |  (optional)  (default to null)
            var filterPeriodstartDate = 2013-10-20T19:20:30+01:00;  // Date |  (optional)  (default to null)
            var filterPeriodendDate = 2013-10-20T19:20:30+01:00;  // Date |  (optional)  (default to null)
            var filterPeriodcustomerId = 56;  // Integer |  (optional)  (default to null)
            var filterPeriodcustomerUtcOffset = 56;  // Integer |  (optional)  (default to null)
            var filterPeriodsortField = filterPeriodsortField_example;  // String |  (optional)  (default to null)
            var filterPeriodsearchString = filterPeriodsearchString_example;  // String |  (optional)  (default to null)
            var filterPeriodsortAsc = true;  // Boolean |  (optional)  (default to null)
            var filterPeriodstartRow = 56;  // Integer |  (optional)  (default to null)
            var filterPeriodmaxResults = 56;  // Integer |  (optional)  (default to null)

            try {
                // CustomerStatements_GetCustomerStatements
                PagedActionResults_CustomerStatements_ result = apiInstance.customerStatementsGetCustomerStatements(id, filterPeriodrequestedList, filterPeriodstartDate, filterPeriodendDate, filterPeriodcustomerId, filterPeriodcustomerUtcOffset, filterPeriodsortField, filterPeriodsearchString, filterPeriodsortAsc, filterPeriodstartRow, filterPeriodmaxResults);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.customerStatementsGetCustomerStatements: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$id = 56; // Integer | 
$filterPeriodrequestedList = 56; // Integer | 
$filterPeriodstartDate = 2013-10-20T19:20:30+01:00; // Date | 
$filterPeriodendDate = 2013-10-20T19:20:30+01:00; // Date | 
$filterPeriodcustomerId = 56; // Integer | 
$filterPeriodcustomerUtcOffset = 56; // Integer | 
$filterPeriodsortField = filterPeriodsortField_example; // String | 
$filterPeriodsearchString = filterPeriodsearchString_example; // String | 
$filterPeriodsortAsc = true; // Boolean | 
$filterPeriodstartRow = 56; // Integer | 
$filterPeriodmaxResults = 56; // Integer | 

try {
    $result = $api_instance->customerStatementsGetCustomerStatements($id, $filterPeriodrequestedList, $filterPeriodstartDate, $filterPeriodendDate, $filterPeriodcustomerId, $filterPeriodcustomerUtcOffset, $filterPeriodsortField, $filterPeriodsearchString, $filterPeriodsortAsc, $filterPeriodstartRow, $filterPeriodmaxResults);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->customerStatementsGetCustomerStatements: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $id = 56; # Integer | 
my $filterPeriodrequestedList = 56; # Integer | 
my $filterPeriodstartDate = 2013-10-20T19:20:30+01:00; # Date | 
my $filterPeriodendDate = 2013-10-20T19:20:30+01:00; # Date | 
my $filterPeriodcustomerId = 56; # Integer | 
my $filterPeriodcustomerUtcOffset = 56; # Integer | 
my $filterPeriodsortField = filterPeriodsortField_example; # String | 
my $filterPeriodsearchString = filterPeriodsearchString_example; # String | 
my $filterPeriodsortAsc = true; # Boolean | 
my $filterPeriodstartRow = 56; # Integer | 
my $filterPeriodmaxResults = 56; # Integer | 

eval {
    my $result = $api_instance->customerStatementsGetCustomerStatements(id => $id, filterPeriodrequestedList => $filterPeriodrequestedList, filterPeriodstartDate => $filterPeriodstartDate, filterPeriodendDate => $filterPeriodendDate, filterPeriodcustomerId => $filterPeriodcustomerId, filterPeriodcustomerUtcOffset => $filterPeriodcustomerUtcOffset, filterPeriodsortField => $filterPeriodsortField, filterPeriodsearchString => $filterPeriodsearchString, filterPeriodsortAsc => $filterPeriodsortAsc, filterPeriodstartRow => $filterPeriodstartRow, filterPeriodmaxResults => $filterPeriodmaxResults);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->customerStatementsGetCustomerStatements: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
id = 56 # Integer |  (default to null)
filterPeriodrequestedList = 56 # Integer |  (optional) (default to null)
filterPeriodstartDate = 2013-10-20T19:20:30+01:00 # Date |  (optional) (default to null)
filterPeriodendDate = 2013-10-20T19:20:30+01:00 # Date |  (optional) (default to null)
filterPeriodcustomerId = 56 # Integer |  (optional) (default to null)
filterPeriodcustomerUtcOffset = 56 # Integer |  (optional) (default to null)
filterPeriodsortField = filterPeriodsortField_example # String |  (optional) (default to null)
filterPeriodsearchString = filterPeriodsearchString_example # String |  (optional) (default to null)
filterPeriodsortAsc = true # Boolean |  (optional) (default to null)
filterPeriodstartRow = 56 # Integer |  (optional) (default to null)
filterPeriodmaxResults = 56 # Integer |  (optional) (default to null)

try:
    # CustomerStatements_GetCustomerStatements
    api_response = api_instance.customer_statements_get_customer_statements(id, filterPeriodrequestedList=filterPeriodrequestedList, filterPeriodstartDate=filterPeriodstartDate, filterPeriodendDate=filterPeriodendDate, filterPeriodcustomerId=filterPeriodcustomerId, filterPeriodcustomerUtcOffset=filterPeriodcustomerUtcOffset, filterPeriodsortField=filterPeriodsortField, filterPeriodsearchString=filterPeriodsearchString, filterPeriodsortAsc=filterPeriodsortAsc, filterPeriodstartRow=filterPeriodstartRow, filterPeriodmaxResults=filterPeriodmaxResults)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->customerStatementsGetCustomerStatements: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let id = 56; // Integer
    let filterPeriodrequestedList = 56; // Integer
    let filterPeriodstartDate = 2013-10-20T19:20:30+01:00; // Date
    let filterPeriodendDate = 2013-10-20T19:20:30+01:00; // Date
    let filterPeriodcustomerId = 56; // Integer
    let filterPeriodcustomerUtcOffset = 56; // Integer
    let filterPeriodsortField = filterPeriodsortField_example; // String
    let filterPeriodsearchString = filterPeriodsearchString_example; // String
    let filterPeriodsortAsc = true; // Boolean
    let filterPeriodstartRow = 56; // Integer
    let filterPeriodmaxResults = 56; // Integer

    let mut context = DefaultApi::Context::default();
    let result = client.customerStatementsGetCustomerStatements(id, filterPeriodrequestedList, filterPeriodstartDate, filterPeriodendDate, filterPeriodcustomerId, filterPeriodcustomerUtcOffset, filterPeriodsortField, filterPeriodsearchString, filterPeriodsortAsc, filterPeriodstartRow, filterPeriodmaxResults, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Path parameters
Name Description
id*
Integer (int32)
Required
Query parameters
Name Description
filter.requestedList
Integer (int32)
filter.startDate
Date (date-time)
filter.endDate
Date (date-time)
filter.customerId
Integer (int32)
filter.customerUtcOffset
Integer (int32)
filter.sortField
String
filter.searchString
String
filter.sortAsc
Boolean
filter.startRow
Integer (int32)
filter.maxResults
Integer (int32)

Responses


customerStatementsGetInvoice

CustomerStatements_GetInvoice


/CustomerStatements/invoice

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/CustomerStatements/invoice?req.transID=56&req.transactionGuid=38400000-8cf0-11bd-b23e-10b96e4ef00d&req.merchantCustomerID=56&req.isShowSummaryLines=true"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer reqPeriodtransID = 56; // Integer | 
        UUID reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
        Integer reqPeriodmerchantCustomerID = 56; // Integer | 
        Boolean reqPeriodisShowSummaryLines = true; // Boolean | 

        try {
            InvoiceT result = apiInstance.customerStatementsGetInvoice(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGetInvoice");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Integer reqPeriodtransID = new Integer(); // Integer | 
final UUID reqPeriodtransactionGuid = new UUID(); // UUID | 
final Integer reqPeriodmerchantCustomerID = new Integer(); // Integer | 
final Boolean reqPeriodisShowSummaryLines = new Boolean(); // Boolean | 

try {
    final result = await api_instance.customerStatementsGetInvoice(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->customerStatementsGetInvoice: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer reqPeriodtransID = 56; // Integer | 
        UUID reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
        Integer reqPeriodmerchantCustomerID = 56; // Integer | 
        Boolean reqPeriodisShowSummaryLines = true; // Boolean | 

        try {
            InvoiceT result = apiInstance.customerStatementsGetInvoice(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGetInvoice");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *reqPeriodtransID = 56; //  (optional) (default to null)
UUID *reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; //  (optional) (default to null)
Integer *reqPeriodmerchantCustomerID = 56; //  (optional) (default to null)
Boolean *reqPeriodisShowSummaryLines = true; //  (optional) (default to null)

// CustomerStatements_GetInvoice
[apiInstance customerStatementsGetInvoiceWith:reqPeriodtransID
    reqPeriodtransactionGuid:reqPeriodtransactionGuid
    reqPeriodmerchantCustomerID:reqPeriodmerchantCustomerID
    reqPeriodisShowSummaryLines:reqPeriodisShowSummaryLines
              completionHandler: ^(InvoiceT output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiCustomerStatements = require('as_server_api_customer_statements');

// Create an instance of the API class
var api = new AsServerApiCustomerStatements.DefaultApi()
var opts = {
  'reqPeriodtransID': 56, // {Integer} 
  'reqPeriodtransactionGuid': 38400000-8cf0-11bd-b23e-10b96e4ef00d, // {UUID} 
  'reqPeriodmerchantCustomerID': 56, // {Integer} 
  'reqPeriodisShowSummaryLines': true // {Boolean} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.customerStatementsGetInvoice(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class customerStatementsGetInvoiceExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var reqPeriodtransID = 56;  // Integer |  (optional)  (default to null)
            var reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d;  // UUID |  (optional)  (default to null)
            var reqPeriodmerchantCustomerID = 56;  // Integer |  (optional)  (default to null)
            var reqPeriodisShowSummaryLines = true;  // Boolean |  (optional)  (default to null)

            try {
                // CustomerStatements_GetInvoice
                InvoiceT result = apiInstance.customerStatementsGetInvoice(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.customerStatementsGetInvoice: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$reqPeriodtransID = 56; // Integer | 
$reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
$reqPeriodmerchantCustomerID = 56; // Integer | 
$reqPeriodisShowSummaryLines = true; // Boolean | 

try {
    $result = $api_instance->customerStatementsGetInvoice($reqPeriodtransID, $reqPeriodtransactionGuid, $reqPeriodmerchantCustomerID, $reqPeriodisShowSummaryLines);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->customerStatementsGetInvoice: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $reqPeriodtransID = 56; # Integer | 
my $reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; # UUID | 
my $reqPeriodmerchantCustomerID = 56; # Integer | 
my $reqPeriodisShowSummaryLines = true; # Boolean | 

eval {
    my $result = $api_instance->customerStatementsGetInvoice(reqPeriodtransID => $reqPeriodtransID, reqPeriodtransactionGuid => $reqPeriodtransactionGuid, reqPeriodmerchantCustomerID => $reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines => $reqPeriodisShowSummaryLines);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->customerStatementsGetInvoice: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
reqPeriodtransID = 56 # Integer |  (optional) (default to null)
reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d # UUID |  (optional) (default to null)
reqPeriodmerchantCustomerID = 56 # Integer |  (optional) (default to null)
reqPeriodisShowSummaryLines = true # Boolean |  (optional) (default to null)

try:
    # CustomerStatements_GetInvoice
    api_response = api_instance.customer_statements_get_invoice(reqPeriodtransID=reqPeriodtransID, reqPeriodtransactionGuid=reqPeriodtransactionGuid, reqPeriodmerchantCustomerID=reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines=reqPeriodisShowSummaryLines)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->customerStatementsGetInvoice: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let reqPeriodtransID = 56; // Integer
    let reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID
    let reqPeriodmerchantCustomerID = 56; // Integer
    let reqPeriodisShowSummaryLines = true; // Boolean

    let mut context = DefaultApi::Context::default();
    let result = client.customerStatementsGetInvoice(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
req.transID
Integer (int32)
req.transactionGuid
UUID (uuid)
req.merchantCustomerID
Integer (int32)
req.isShowSummaryLines
Boolean

Responses


customerStatementsGetInvoiceAlert

CustomerStatements_GetInvoiceAlert


/CustomerStatements/invoice/alert

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/CustomerStatements/invoice/alert?req.transID=56&req.transactionGuid=38400000-8cf0-11bd-b23e-10b96e4ef00d&req.merchantCustomerID=56&req.isShowSummaryLines=true"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer reqPeriodtransID = 56; // Integer | 
        UUID reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
        Integer reqPeriodmerchantCustomerID = 56; // Integer | 
        Boolean reqPeriodisShowSummaryLines = true; // Boolean | 

        try {
            ActionResults_AlertInfo_ result = apiInstance.customerStatementsGetInvoiceAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGetInvoiceAlert");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Integer reqPeriodtransID = new Integer(); // Integer | 
final UUID reqPeriodtransactionGuid = new UUID(); // UUID | 
final Integer reqPeriodmerchantCustomerID = new Integer(); // Integer | 
final Boolean reqPeriodisShowSummaryLines = new Boolean(); // Boolean | 

try {
    final result = await api_instance.customerStatementsGetInvoiceAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->customerStatementsGetInvoiceAlert: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer reqPeriodtransID = 56; // Integer | 
        UUID reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
        Integer reqPeriodmerchantCustomerID = 56; // Integer | 
        Boolean reqPeriodisShowSummaryLines = true; // Boolean | 

        try {
            ActionResults_AlertInfo_ result = apiInstance.customerStatementsGetInvoiceAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGetInvoiceAlert");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *reqPeriodtransID = 56; //  (optional) (default to null)
UUID *reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; //  (optional) (default to null)
Integer *reqPeriodmerchantCustomerID = 56; //  (optional) (default to null)
Boolean *reqPeriodisShowSummaryLines = true; //  (optional) (default to null)

// CustomerStatements_GetInvoiceAlert
[apiInstance customerStatementsGetInvoiceAlertWith:reqPeriodtransID
    reqPeriodtransactionGuid:reqPeriodtransactionGuid
    reqPeriodmerchantCustomerID:reqPeriodmerchantCustomerID
    reqPeriodisShowSummaryLines:reqPeriodisShowSummaryLines
              completionHandler: ^(ActionResults_AlertInfo_ output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiCustomerStatements = require('as_server_api_customer_statements');

// Create an instance of the API class
var api = new AsServerApiCustomerStatements.DefaultApi()
var opts = {
  'reqPeriodtransID': 56, // {Integer} 
  'reqPeriodtransactionGuid': 38400000-8cf0-11bd-b23e-10b96e4ef00d, // {UUID} 
  'reqPeriodmerchantCustomerID': 56, // {Integer} 
  'reqPeriodisShowSummaryLines': true // {Boolean} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.customerStatementsGetInvoiceAlert(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class customerStatementsGetInvoiceAlertExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var reqPeriodtransID = 56;  // Integer |  (optional)  (default to null)
            var reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d;  // UUID |  (optional)  (default to null)
            var reqPeriodmerchantCustomerID = 56;  // Integer |  (optional)  (default to null)
            var reqPeriodisShowSummaryLines = true;  // Boolean |  (optional)  (default to null)

            try {
                // CustomerStatements_GetInvoiceAlert
                ActionResults_AlertInfo_ result = apiInstance.customerStatementsGetInvoiceAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.customerStatementsGetInvoiceAlert: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$reqPeriodtransID = 56; // Integer | 
$reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
$reqPeriodmerchantCustomerID = 56; // Integer | 
$reqPeriodisShowSummaryLines = true; // Boolean | 

try {
    $result = $api_instance->customerStatementsGetInvoiceAlert($reqPeriodtransID, $reqPeriodtransactionGuid, $reqPeriodmerchantCustomerID, $reqPeriodisShowSummaryLines);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->customerStatementsGetInvoiceAlert: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $reqPeriodtransID = 56; # Integer | 
my $reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; # UUID | 
my $reqPeriodmerchantCustomerID = 56; # Integer | 
my $reqPeriodisShowSummaryLines = true; # Boolean | 

eval {
    my $result = $api_instance->customerStatementsGetInvoiceAlert(reqPeriodtransID => $reqPeriodtransID, reqPeriodtransactionGuid => $reqPeriodtransactionGuid, reqPeriodmerchantCustomerID => $reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines => $reqPeriodisShowSummaryLines);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->customerStatementsGetInvoiceAlert: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
reqPeriodtransID = 56 # Integer |  (optional) (default to null)
reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d # UUID |  (optional) (default to null)
reqPeriodmerchantCustomerID = 56 # Integer |  (optional) (default to null)
reqPeriodisShowSummaryLines = true # Boolean |  (optional) (default to null)

try:
    # CustomerStatements_GetInvoiceAlert
    api_response = api_instance.customer_statements_get_invoice_alert(reqPeriodtransID=reqPeriodtransID, reqPeriodtransactionGuid=reqPeriodtransactionGuid, reqPeriodmerchantCustomerID=reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines=reqPeriodisShowSummaryLines)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->customerStatementsGetInvoiceAlert: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let reqPeriodtransID = 56; // Integer
    let reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID
    let reqPeriodmerchantCustomerID = 56; // Integer
    let reqPeriodisShowSummaryLines = true; // Boolean

    let mut context = DefaultApi::Context::default();
    let result = client.customerStatementsGetInvoiceAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
req.transID
Integer (int32)
req.transactionGuid
UUID (uuid)
req.merchantCustomerID
Integer (int32)
req.isShowSummaryLines
Boolean

Responses


customerStatementsGetPayment

CustomerStatements_GetPayment


/CustomerStatements/payment

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/CustomerStatements/payment?req.transID=56&req.transactionGuid=38400000-8cf0-11bd-b23e-10b96e4ef00d&req.merchantCustomerID=56&req.isShowSummaryLines=true"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer reqPeriodtransID = 56; // Integer | 
        UUID reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
        Integer reqPeriodmerchantCustomerID = 56; // Integer | 
        Boolean reqPeriodisShowSummaryLines = true; // Boolean | 

        try {
            PaymentT result = apiInstance.customerStatementsGetPayment(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGetPayment");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Integer reqPeriodtransID = new Integer(); // Integer | 
final UUID reqPeriodtransactionGuid = new UUID(); // UUID | 
final Integer reqPeriodmerchantCustomerID = new Integer(); // Integer | 
final Boolean reqPeriodisShowSummaryLines = new Boolean(); // Boolean | 

try {
    final result = await api_instance.customerStatementsGetPayment(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->customerStatementsGetPayment: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer reqPeriodtransID = 56; // Integer | 
        UUID reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
        Integer reqPeriodmerchantCustomerID = 56; // Integer | 
        Boolean reqPeriodisShowSummaryLines = true; // Boolean | 

        try {
            PaymentT result = apiInstance.customerStatementsGetPayment(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGetPayment");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *reqPeriodtransID = 56; //  (optional) (default to null)
UUID *reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; //  (optional) (default to null)
Integer *reqPeriodmerchantCustomerID = 56; //  (optional) (default to null)
Boolean *reqPeriodisShowSummaryLines = true; //  (optional) (default to null)

// CustomerStatements_GetPayment
[apiInstance customerStatementsGetPaymentWith:reqPeriodtransID
    reqPeriodtransactionGuid:reqPeriodtransactionGuid
    reqPeriodmerchantCustomerID:reqPeriodmerchantCustomerID
    reqPeriodisShowSummaryLines:reqPeriodisShowSummaryLines
              completionHandler: ^(PaymentT output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiCustomerStatements = require('as_server_api_customer_statements');

// Create an instance of the API class
var api = new AsServerApiCustomerStatements.DefaultApi()
var opts = {
  'reqPeriodtransID': 56, // {Integer} 
  'reqPeriodtransactionGuid': 38400000-8cf0-11bd-b23e-10b96e4ef00d, // {UUID} 
  'reqPeriodmerchantCustomerID': 56, // {Integer} 
  'reqPeriodisShowSummaryLines': true // {Boolean} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.customerStatementsGetPayment(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class customerStatementsGetPaymentExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var reqPeriodtransID = 56;  // Integer |  (optional)  (default to null)
            var reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d;  // UUID |  (optional)  (default to null)
            var reqPeriodmerchantCustomerID = 56;  // Integer |  (optional)  (default to null)
            var reqPeriodisShowSummaryLines = true;  // Boolean |  (optional)  (default to null)

            try {
                // CustomerStatements_GetPayment
                PaymentT result = apiInstance.customerStatementsGetPayment(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.customerStatementsGetPayment: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$reqPeriodtransID = 56; // Integer | 
$reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
$reqPeriodmerchantCustomerID = 56; // Integer | 
$reqPeriodisShowSummaryLines = true; // Boolean | 

try {
    $result = $api_instance->customerStatementsGetPayment($reqPeriodtransID, $reqPeriodtransactionGuid, $reqPeriodmerchantCustomerID, $reqPeriodisShowSummaryLines);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->customerStatementsGetPayment: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $reqPeriodtransID = 56; # Integer | 
my $reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; # UUID | 
my $reqPeriodmerchantCustomerID = 56; # Integer | 
my $reqPeriodisShowSummaryLines = true; # Boolean | 

eval {
    my $result = $api_instance->customerStatementsGetPayment(reqPeriodtransID => $reqPeriodtransID, reqPeriodtransactionGuid => $reqPeriodtransactionGuid, reqPeriodmerchantCustomerID => $reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines => $reqPeriodisShowSummaryLines);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->customerStatementsGetPayment: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
reqPeriodtransID = 56 # Integer |  (optional) (default to null)
reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d # UUID |  (optional) (default to null)
reqPeriodmerchantCustomerID = 56 # Integer |  (optional) (default to null)
reqPeriodisShowSummaryLines = true # Boolean |  (optional) (default to null)

try:
    # CustomerStatements_GetPayment
    api_response = api_instance.customer_statements_get_payment(reqPeriodtransID=reqPeriodtransID, reqPeriodtransactionGuid=reqPeriodtransactionGuid, reqPeriodmerchantCustomerID=reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines=reqPeriodisShowSummaryLines)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->customerStatementsGetPayment: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let reqPeriodtransID = 56; // Integer
    let reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID
    let reqPeriodmerchantCustomerID = 56; // Integer
    let reqPeriodisShowSummaryLines = true; // Boolean

    let mut context = DefaultApi::Context::default();
    let result = client.customerStatementsGetPayment(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
req.transID
Integer (int32)
req.transactionGuid
UUID (uuid)
req.merchantCustomerID
Integer (int32)
req.isShowSummaryLines
Boolean

Responses


customerStatementsGetPaymentAlert

CustomerStatements_GetPaymentAlert


/CustomerStatements/payment/alert

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/CustomerStatements/payment/alert?req.transID=56&req.transactionGuid=38400000-8cf0-11bd-b23e-10b96e4ef00d&req.merchantCustomerID=56&req.isShowSummaryLines=true"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer reqPeriodtransID = 56; // Integer | 
        UUID reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
        Integer reqPeriodmerchantCustomerID = 56; // Integer | 
        Boolean reqPeriodisShowSummaryLines = true; // Boolean | 

        try {
            ActionResults_AlertInfo_ result = apiInstance.customerStatementsGetPaymentAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGetPaymentAlert");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Integer reqPeriodtransID = new Integer(); // Integer | 
final UUID reqPeriodtransactionGuid = new UUID(); // UUID | 
final Integer reqPeriodmerchantCustomerID = new Integer(); // Integer | 
final Boolean reqPeriodisShowSummaryLines = new Boolean(); // Boolean | 

try {
    final result = await api_instance.customerStatementsGetPaymentAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->customerStatementsGetPaymentAlert: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer reqPeriodtransID = 56; // Integer | 
        UUID reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
        Integer reqPeriodmerchantCustomerID = 56; // Integer | 
        Boolean reqPeriodisShowSummaryLines = true; // Boolean | 

        try {
            ActionResults_AlertInfo_ result = apiInstance.customerStatementsGetPaymentAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsGetPaymentAlert");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *reqPeriodtransID = 56; //  (optional) (default to null)
UUID *reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; //  (optional) (default to null)
Integer *reqPeriodmerchantCustomerID = 56; //  (optional) (default to null)
Boolean *reqPeriodisShowSummaryLines = true; //  (optional) (default to null)

// CustomerStatements_GetPaymentAlert
[apiInstance customerStatementsGetPaymentAlertWith:reqPeriodtransID
    reqPeriodtransactionGuid:reqPeriodtransactionGuid
    reqPeriodmerchantCustomerID:reqPeriodmerchantCustomerID
    reqPeriodisShowSummaryLines:reqPeriodisShowSummaryLines
              completionHandler: ^(ActionResults_AlertInfo_ output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiCustomerStatements = require('as_server_api_customer_statements');

// Create an instance of the API class
var api = new AsServerApiCustomerStatements.DefaultApi()
var opts = {
  'reqPeriodtransID': 56, // {Integer} 
  'reqPeriodtransactionGuid': 38400000-8cf0-11bd-b23e-10b96e4ef00d, // {UUID} 
  'reqPeriodmerchantCustomerID': 56, // {Integer} 
  'reqPeriodisShowSummaryLines': true // {Boolean} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.customerStatementsGetPaymentAlert(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class customerStatementsGetPaymentAlertExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var reqPeriodtransID = 56;  // Integer |  (optional)  (default to null)
            var reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d;  // UUID |  (optional)  (default to null)
            var reqPeriodmerchantCustomerID = 56;  // Integer |  (optional)  (default to null)
            var reqPeriodisShowSummaryLines = true;  // Boolean |  (optional)  (default to null)

            try {
                // CustomerStatements_GetPaymentAlert
                ActionResults_AlertInfo_ result = apiInstance.customerStatementsGetPaymentAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.customerStatementsGetPaymentAlert: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$reqPeriodtransID = 56; // Integer | 
$reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID | 
$reqPeriodmerchantCustomerID = 56; // Integer | 
$reqPeriodisShowSummaryLines = true; // Boolean | 

try {
    $result = $api_instance->customerStatementsGetPaymentAlert($reqPeriodtransID, $reqPeriodtransactionGuid, $reqPeriodmerchantCustomerID, $reqPeriodisShowSummaryLines);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->customerStatementsGetPaymentAlert: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $reqPeriodtransID = 56; # Integer | 
my $reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; # UUID | 
my $reqPeriodmerchantCustomerID = 56; # Integer | 
my $reqPeriodisShowSummaryLines = true; # Boolean | 

eval {
    my $result = $api_instance->customerStatementsGetPaymentAlert(reqPeriodtransID => $reqPeriodtransID, reqPeriodtransactionGuid => $reqPeriodtransactionGuid, reqPeriodmerchantCustomerID => $reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines => $reqPeriodisShowSummaryLines);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->customerStatementsGetPaymentAlert: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
reqPeriodtransID = 56 # Integer |  (optional) (default to null)
reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d # UUID |  (optional) (default to null)
reqPeriodmerchantCustomerID = 56 # Integer |  (optional) (default to null)
reqPeriodisShowSummaryLines = true # Boolean |  (optional) (default to null)

try:
    # CustomerStatements_GetPaymentAlert
    api_response = api_instance.customer_statements_get_payment_alert(reqPeriodtransID=reqPeriodtransID, reqPeriodtransactionGuid=reqPeriodtransactionGuid, reqPeriodmerchantCustomerID=reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines=reqPeriodisShowSummaryLines)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->customerStatementsGetPaymentAlert: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let reqPeriodtransID = 56; // Integer
    let reqPeriodtransactionGuid = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // UUID
    let reqPeriodmerchantCustomerID = 56; // Integer
    let reqPeriodisShowSummaryLines = true; // Boolean

    let mut context = DefaultApi::Context::default();
    let result = client.customerStatementsGetPaymentAlert(reqPeriodtransID, reqPeriodtransactionGuid, reqPeriodmerchantCustomerID, reqPeriodisShowSummaryLines, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
req.transID
Integer (int32)
req.transactionGuid
UUID (uuid)
req.merchantCustomerID
Integer (int32)
req.isShowSummaryLines
Boolean

Responses


customerStatementsProcessPayment

CustomerStatements_ProcessPayment


/CustomerStatements/invoice/payment

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 -H "Content-Type: application/json,text/json,application/xml,text/xml,application/x-www-form-urlencoded" \
 "https://api.dev.spenda.co/api/CustomerStatements/invoice/payment" \
 -d '{
  "Token" : "Token",
  "POSTerminalShiftID" : 5,
  "CustomerID" : 4,
  "POSDeviceID" : "POSDeviceID",
  "SurchargeAmount" : 4.652396432933246,
  "DateTime" : "2000-01-23T04:56:07.000+00:00",
  "PaymentDateTime_offset" : 1,
  "ReceiptID" : "ReceiptID",
  "SyncLogs" : [ {
    "Status" : "Status",
    "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
    "AdaptorID" : 3,
    "LastImportDateTime_offset" : 7,
    "LastExportDateTime_offset" : 0,
    "LastModifiedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "LastExportDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "BSID" : "BSID",
    "Details" : "Details",
    "SyncCode" : "SyncCode",
    "LastExportDateTime" : "2000-01-23T04:56:07.000+00:00",
    "LastModifiedDateTime_offset" : 7,
    "ID" : 3,
    "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "Status" : "Status",
    "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
    "AdaptorID" : 3,
    "LastImportDateTime_offset" : 7,
    "LastExportDateTime_offset" : 0,
    "LastModifiedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "LastExportDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "BSID" : "BSID",
    "Details" : "Details",
    "SyncCode" : "SyncCode",
    "LastExportDateTime" : "2000-01-23T04:56:07.000+00:00",
    "LastModifiedDateTime_offset" : 7,
    "ID" : 3,
    "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
  } ],
  "Currency" : "Currency",
  "PaymentDeviceID" : "PaymentDeviceID",
  "ID" : 9,
  "CreditCardLastFour" : "CreditCardLastFour",
  "Status" : "Status",
  "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
  "PaymentLogs" : [ {
    "Description" : "Description",
    "Message" : "Message",
    "LogDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "ID" : 6,
    "LogDateTime_offset" : 0,
    "PaymentStatus3rdParty" : "PaymentStatus3rdParty",
    "Code" : "Code",
    "PaymentStatus" : "PaymentStatus"
  }, {
    "Description" : "Description",
    "Message" : "Message",
    "LogDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "ID" : 6,
    "LogDateTime_offset" : 0,
    "PaymentStatus3rdParty" : "PaymentStatus3rdParty",
    "Code" : "Code",
    "PaymentStatus" : "PaymentStatus"
  } ],
  "SupplierRefNumber" : "SupplierRefNumber",
  "PaymentGroupRefNumber" : "PaymentGroupRefNumber",
  "DatTypeID" : 5,
  "Method" : "Method",
  "IsRefund" : true,
  "BSID" : "BSID",
  "SettlementDate" : "2000-01-23T04:56:07.000+00:00",
  "AccountCustomerName" : "AccountCustomerName",
  "PayerFeeDescription" : "PayerFeeDescription",
  "PaymentServiceTerminalID" : "PaymentServiceTerminalID",
  "IsPaid" : true,
  "AccountCustomerRefNumber" : "AccountCustomerRefNumber",
  "AmountString" : "AmountString",
  "RefBusTrans" : [ {
    "AppliedAmountString" : "AppliedAmountString",
    "AmountString" : "AmountString",
    "ClaimDescription" : "ClaimDescription",
    "TransType" : "TransType",
    "GUIDstring" : "GUIDstring",
    "MerchantSurcharge" : 2.8841621266687802,
    "ID" : 9,
    "AppliedCredit" : 5.944895607614016,
    "Status" : "Status",
    "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
    "Amount" : 6.438423552598547,
    "RefNumber" : "RefNumber",
    "GUID" : "00000000-0000-0000-0000-000000000000",
    "AppliedAmount" : 6.965117697638846,
    "TotalInc" : 8.762042012749001,
    "AppliedTransID" : 6,
    "ClaimRequestID" : 6,
    "AppliedDateString" : "AppliedDateString",
    "TransSubType" : "TransSubType",
    "TransTypeID" : 3,
    "BSID" : "BSID",
    "Summary" : "Summary",
    "MerchantSurchargeLineID" : 6,
    "Balance" : 1.284659006116532,
    "IsEarlyClaimShortPayment" : true
  }, {
    "AppliedAmountString" : "AppliedAmountString",
    "AmountString" : "AmountString",
    "ClaimDescription" : "ClaimDescription",
    "TransType" : "TransType",
    "GUIDstring" : "GUIDstring",
    "MerchantSurcharge" : 2.8841621266687802,
    "ID" : 9,
    "AppliedCredit" : 5.944895607614016,
    "Status" : "Status",
    "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
    "Amount" : 6.438423552598547,
    "RefNumber" : "RefNumber",
    "GUID" : "00000000-0000-0000-0000-000000000000",
    "AppliedAmount" : 6.965117697638846,
    "TotalInc" : 8.762042012749001,
    "AppliedTransID" : 6,
    "ClaimRequestID" : 6,
    "AppliedDateString" : "AppliedDateString",
    "TransSubType" : "TransSubType",
    "TransTypeID" : 3,
    "BSID" : "BSID",
    "Summary" : "Summary",
    "MerchantSurchargeLineID" : 6,
    "Balance" : 1.284659006116532,
    "IsEarlyClaimShortPayment" : true
  } ],
  "Description" : "Description",
  "SupplierBSID" : "SupplierBSID",
  "MCPPaymentTriggerID" : "MCPPaymentTriggerID",
  "CustomerBSID" : "CustomerBSID",
  "BatchBSID" : "BatchBSID",
  "PaymentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
  "PaymentServiceMerchantID" : "PaymentServiceMerchantID",
  "AmountTendered" : 7.386281948385884,
  "Amount" : 2.027123023002322,
  "Fee" : 4.145608029883936,
  "InvoicePaymentID" : 9,
  "MerchantID" : "MerchantID",
  "TerminalID" : "TerminalID",
  "ErrorMessage" : "ErrorMessage",
  "IsManuallyAllocated" : true,
  "SupplierGUIDstring" : "SupplierGUIDstring",
  "FeeString" : "FeeString",
  "GUIDstring" : "GUIDstring",
  "SupplierID" : 9,
  "CustomerRefNumber" : "CustomerRefNumber",
  "BankAccountCode" : "BankAccountCode",
  "Version" : 6.027456183070403,
  "StatusDescription" : "StatusDescription",
  "IsManualSettlementDate" : true,
  "AccountCode" : "AccountCode",
  "CreatedWith" : "CreatedWith",
  "AccountCustomerID" : 5,
  "RefNumber" : "RefNumber",
  "GUID" : "00000000-0000-0000-0000-000000000000",
  "IsBatched" : true,
  "AccountCustomerStatementPeriodID" : 5,
  "TerminalType" : "TerminalType",
  "MethodID" : 3,
  "RepUserName" : "RepUserName",
  "CashOut" : 1.0246457001441578,
  "CustomerGUIDstring" : "CustomerGUIDstring",
  "IsAccountCustomer" : true,
  "AccountBSID" : "AccountBSID",
  "IsLoyaltyPointsToggleOn" : true,
  "Balance" : 6.683562403749608,
  "InvoicePaymentAllocations" : [ {
    "Status" : "Status",
    "AccountCustomerRefNumber" : "AccountCustomerRefNumber",
    "IsUpcomingPayment" : true,
    "PaymentRefNumber" : "PaymentRefNumber",
    "CustomerBSID" : "CustomerBSID",
    "Amount" : 7.740351818741173,
    "RefNumber" : "RefNumber",
    "ScheduledDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "ClaimRequestTotalAmount" : 3.0205796992916243,
    "AccountCustomerBSID" : "AccountCustomerBSID",
    "Invoices" : [ {
      "AppliedAmountString" : "AppliedAmountString",
      "AmountString" : "AmountString",
      "ClaimDescription" : "ClaimDescription",
      "TransType" : "TransType",
      "GUIDstring" : "GUIDstring",
      "MerchantSurcharge" : 2.8841621266687802,
      "ID" : 9,
      "AppliedCredit" : 5.944895607614016,
      "Status" : "Status",
      "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
      "Amount" : 6.438423552598547,
      "RefNumber" : "RefNumber",
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "AppliedAmount" : 6.965117697638846,
      "TotalInc" : 8.762042012749001,
      "AppliedTransID" : 6,
      "ClaimRequestID" : 6,
      "AppliedDateString" : "AppliedDateString",
      "TransSubType" : "TransSubType",
      "TransTypeID" : 3,
      "BSID" : "BSID",
      "Summary" : "Summary",
      "MerchantSurchargeLineID" : 6,
      "Balance" : 1.284659006116532,
      "IsEarlyClaimShortPayment" : true
    }, {
      "AppliedAmountString" : "AppliedAmountString",
      "AmountString" : "AmountString",
      "ClaimDescription" : "ClaimDescription",
      "TransType" : "TransType",
      "GUIDstring" : "GUIDstring",
      "MerchantSurcharge" : 2.8841621266687802,
      "ID" : 9,
      "AppliedCredit" : 5.944895607614016,
      "Status" : "Status",
      "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
      "Amount" : 6.438423552598547,
      "RefNumber" : "RefNumber",
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "AppliedAmount" : 6.965117697638846,
      "TotalInc" : 8.762042012749001,
      "AppliedTransID" : 6,
      "ClaimRequestID" : 6,
      "AppliedDateString" : "AppliedDateString",
      "TransSubType" : "TransSubType",
      "TransTypeID" : 3,
      "BSID" : "BSID",
      "Summary" : "Summary",
      "MerchantSurchargeLineID" : 6,
      "Balance" : 1.284659006116532,
      "IsEarlyClaimShortPayment" : true
    } ],
    "CustomerID" : 3,
    "CreditNotes" : [ {
      "AppliedAmountString" : "AppliedAmountString",
      "AmountString" : "AmountString",
      "ClaimDescription" : "ClaimDescription",
      "TransType" : "TransType",
      "GUIDstring" : "GUIDstring",
      "MerchantSurcharge" : 2.8841621266687802,
      "ID" : 9,
      "AppliedCredit" : 5.944895607614016,
      "Status" : "Status",
      "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
      "Amount" : 6.438423552598547,
      "RefNumber" : "RefNumber",
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "AppliedAmount" : 6.965117697638846,
      "TotalInc" : 8.762042012749001,
      "AppliedTransID" : 6,
      "ClaimRequestID" : 6,
      "AppliedDateString" : "AppliedDateString",
      "TransSubType" : "TransSubType",
      "TransTypeID" : 3,
      "BSID" : "BSID",
      "Summary" : "Summary",
      "MerchantSurchargeLineID" : 6,
      "Balance" : 1.284659006116532,
      "IsEarlyClaimShortPayment" : true
    }, {
      "AppliedAmountString" : "AppliedAmountString",
      "AmountString" : "AmountString",
      "ClaimDescription" : "ClaimDescription",
      "TransType" : "TransType",
      "GUIDstring" : "GUIDstring",
      "MerchantSurcharge" : 2.8841621266687802,
      "ID" : 9,
      "AppliedCredit" : 5.944895607614016,
      "Status" : "Status",
      "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
      "Amount" : 6.438423552598547,
      "RefNumber" : "RefNumber",
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "AppliedAmount" : 6.965117697638846,
      "TotalInc" : 8.762042012749001,
      "AppliedTransID" : 6,
      "ClaimRequestID" : 6,
      "AppliedDateString" : "AppliedDateString",
      "TransSubType" : "TransSubType",
      "TransTypeID" : 3,
      "BSID" : "BSID",
      "Summary" : "Summary",
      "MerchantSurchargeLineID" : 6,
      "Balance" : 1.284659006116532,
      "IsEarlyClaimShortPayment" : true
    } ],
    "GUIDstring" : "GUIDstring",
    "BSID" : "BSID",
    "CustomerRefNumber" : "CustomerRefNumber",
    "AccountCustomerName" : "AccountCustomerName",
    "PaymentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "SyncLogs" : [ {
      "Status" : "Status",
      "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
      "AdaptorID" : 3,
      "LastImportDateTime_offset" : 7,
      "LastExportDateTime_offset" : 0,
      "LastModifiedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
      "LastExportDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
      "BSID" : "BSID",
      "Details" : "Details",
      "SyncCode" : "SyncCode",
      "LastExportDateTime" : "2000-01-23T04:56:07.000+00:00",
      "LastModifiedDateTime_offset" : 7,
      "ID" : 3,
      "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
    }, {
      "Status" : "Status",
      "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
      "AdaptorID" : 3,
      "LastImportDateTime_offset" : 7,
      "LastExportDateTime_offset" : 0,
      "LastModifiedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
      "LastExportDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
      "BSID" : "BSID",
      "Details" : "Details",
      "SyncCode" : "SyncCode",
      "LastExportDateTime" : "2000-01-23T04:56:07.000+00:00",
      "LastModifiedDateTime_offset" : 7,
      "ID" : 3,
      "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
    } ],
    "Currency" : "Currency",
    "PaymentAllocationDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "ID" : 8,
    "CustomerName" : "CustomerName",
    "AccountCustomerID" : 7
  }, {
    "Status" : "Status",
    "AccountCustomerRefNumber" : "AccountCustomerRefNumber",
    "IsUpcomingPayment" : true,
    "PaymentRefNumber" : "PaymentRefNumber",
    "CustomerBSID" : "CustomerBSID",
    "Amount" : 7.740351818741173,
    "RefNumber" : "RefNumber",
    "ScheduledDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "ClaimRequestTotalAmount" : 3.0205796992916243,
    "AccountCustomerBSID" : "AccountCustomerBSID",
    "Invoices" : [ {
      "AppliedAmountString" : "AppliedAmountString",
      "AmountString" : "AmountString",
      "ClaimDescription" : "ClaimDescription",
      "TransType" : "TransType",
      "GUIDstring" : "GUIDstring",
      "MerchantSurcharge" : 2.8841621266687802,
      "ID" : 9,
      "AppliedCredit" : 5.944895607614016,
      "Status" : "Status",
      "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
      "Amount" : 6.438423552598547,
      "RefNumber" : "RefNumber",
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "AppliedAmount" : 6.965117697638846,
      "TotalInc" : 8.762042012749001,
      "AppliedTransID" : 6,
      "ClaimRequestID" : 6,
      "AppliedDateString" : "AppliedDateString",
      "TransSubType" : "TransSubType",
      "TransTypeID" : 3,
      "BSID" : "BSID",
      "Summary" : "Summary",
      "MerchantSurchargeLineID" : 6,
      "Balance" : 1.284659006116532,
      "IsEarlyClaimShortPayment" : true
    }, {
      "AppliedAmountString" : "AppliedAmountString",
      "AmountString" : "AmountString",
      "ClaimDescription" : "ClaimDescription",
      "TransType" : "TransType",
      "GUIDstring" : "GUIDstring",
      "MerchantSurcharge" : 2.8841621266687802,
      "ID" : 9,
      "AppliedCredit" : 5.944895607614016,
      "Status" : "Status",
      "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
      "Amount" : 6.438423552598547,
      "RefNumber" : "RefNumber",
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "AppliedAmount" : 6.965117697638846,
      "TotalInc" : 8.762042012749001,
      "AppliedTransID" : 6,
      "ClaimRequestID" : 6,
      "AppliedDateString" : "AppliedDateString",
      "TransSubType" : "TransSubType",
      "TransTypeID" : 3,
      "BSID" : "BSID",
      "Summary" : "Summary",
      "MerchantSurchargeLineID" : 6,
      "Balance" : 1.284659006116532,
      "IsEarlyClaimShortPayment" : true
    } ],
    "CustomerID" : 3,
    "CreditNotes" : [ {
      "AppliedAmountString" : "AppliedAmountString",
      "AmountString" : "AmountString",
      "ClaimDescription" : "ClaimDescription",
      "TransType" : "TransType",
      "GUIDstring" : "GUIDstring",
      "MerchantSurcharge" : 2.8841621266687802,
      "ID" : 9,
      "AppliedCredit" : 5.944895607614016,
      "Status" : "Status",
      "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
      "Amount" : 6.438423552598547,
      "RefNumber" : "RefNumber",
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "AppliedAmount" : 6.965117697638846,
      "TotalInc" : 8.762042012749001,
      "AppliedTransID" : 6,
      "ClaimRequestID" : 6,
      "AppliedDateString" : "AppliedDateString",
      "TransSubType" : "TransSubType",
      "TransTypeID" : 3,
      "BSID" : "BSID",
      "Summary" : "Summary",
      "MerchantSurchargeLineID" : 6,
      "Balance" : 1.284659006116532,
      "IsEarlyClaimShortPayment" : true
    }, {
      "AppliedAmountString" : "AppliedAmountString",
      "AmountString" : "AmountString",
      "ClaimDescription" : "ClaimDescription",
      "TransType" : "TransType",
      "GUIDstring" : "GUIDstring",
      "MerchantSurcharge" : 2.8841621266687802,
      "ID" : 9,
      "AppliedCredit" : 5.944895607614016,
      "Status" : "Status",
      "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
      "Amount" : 6.438423552598547,
      "RefNumber" : "RefNumber",
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "AppliedAmount" : 6.965117697638846,
      "TotalInc" : 8.762042012749001,
      "AppliedTransID" : 6,
      "ClaimRequestID" : 6,
      "AppliedDateString" : "AppliedDateString",
      "TransSubType" : "TransSubType",
      "TransTypeID" : 3,
      "BSID" : "BSID",
      "Summary" : "Summary",
      "MerchantSurchargeLineID" : 6,
      "Balance" : 1.284659006116532,
      "IsEarlyClaimShortPayment" : true
    } ],
    "GUIDstring" : "GUIDstring",
    "BSID" : "BSID",
    "CustomerRefNumber" : "CustomerRefNumber",
    "AccountCustomerName" : "AccountCustomerName",
    "PaymentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "SyncLogs" : [ {
      "Status" : "Status",
      "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
      "AdaptorID" : 3,
      "LastImportDateTime_offset" : 7,
      "LastExportDateTime_offset" : 0,
      "LastModifiedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
      "LastExportDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
      "BSID" : "BSID",
      "Details" : "Details",
      "SyncCode" : "SyncCode",
      "LastExportDateTime" : "2000-01-23T04:56:07.000+00:00",
      "LastModifiedDateTime_offset" : 7,
      "ID" : 3,
      "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
    }, {
      "Status" : "Status",
      "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
      "AdaptorID" : 3,
      "LastImportDateTime_offset" : 7,
      "LastExportDateTime_offset" : 0,
      "LastModifiedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
      "LastExportDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
      "BSID" : "BSID",
      "Details" : "Details",
      "SyncCode" : "SyncCode",
      "LastExportDateTime" : "2000-01-23T04:56:07.000+00:00",
      "LastModifiedDateTime_offset" : 7,
      "ID" : 3,
      "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
    } ],
    "Currency" : "Currency",
    "PaymentAllocationDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "ID" : 8,
    "CustomerName" : "CustomerName",
    "AccountCustomerID" : 7
  } ],
  "StatementEndDate" : "2000-01-23T04:56:07.000+00:00",
  "MerchantFeeAmount" : 2.3021358869347655,
  "DocID" : 1,
  "TransactionType" : "TransactionType",
  "ExchangeRate" : 7.457744773683766,
  "StatementStartDate" : "2000-01-23T04:56:07.000+00:00",
  "SurchageDescription" : "SurchageDescription",
  "RepEmailAddress" : "RepEmailAddress",
  "IsActive" : true,
  "AmountTenderedString" : "AmountTenderedString",
  "DateTimeString" : "DateTimeString",
  "MerchantFeeDescription" : "MerchantFeeDescription",
  "PaymentUserFullName" : "PaymentUserFullName",
  "MCTrackTransactionID" : "MCTrackTransactionID",
  "IsRefunded" : true,
  "RepLastName" : "RepLastName",
  "PaymentType" : "PaymentType",
  "CustomerName" : "CustomerName",
  "PaymentService" : "PaymentService",
  "AppliedAmount" : 1.1730742509559433,
  "IsGiftCard" : true,
  "MCPTransactionID" : "MCPTransactionID",
  "CreditCard" : {
    "CardNumber" : "CardNumber",
    "CardToken" : "CardToken",
    "ExpiryMMYY" : "ExpiryMMYY",
    "FriendlyName" : "FriendlyName",
    "CardType" : "CardType",
    "CardHolderName" : "CardHolderName",
    "CardVerificationNumber" : "CardVerificationNumber"
  },
  "PaymentUserID" : 7,
  "RowNumber" : 0,
  "ChangeGivenString" : "ChangeGivenString",
  "SupplierName" : "SupplierName",
  "DateString" : "DateString",
  "ChangeGiven" : 1.2315135367772556,
  "TransRefNumber" : "TransRefNumber",
  "ChequeNumber" : "ChequeNumber",
  "PaymentAccountGUIDstring" : "PaymentAccountGUIDstring",
  "RepFirstName" : "RepFirstName",
  "TransactionTypeDatTypeID" : 6
}' \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '<PaymentT>
  <RowNumber>123456789</RowNumber>
  <Version>3.149</Version>
  <GUID>00000000-0000-0000-0000-000000000000</GUID>
  <AmountString>aeiou</AmountString>
  <AmountTenderedString>aeiou</AmountTenderedString>
  <ChangeGivenString>aeiou</ChangeGivenString>
  <DateTimeString>aeiou</DateTimeString>
  <DateString>aeiou</DateString>
  <DocID>123</DocID>
  <DatTypeID>123</DatTypeID>
  <ErrorMessage>aeiou</ErrorMessage>
  <FeeString>aeiou</FeeString>
  <IsGiftCard>true</IsGiftCard>
  <IsPaid>true</IsPaid>
  <POSTerminalShiftID>123</POSTerminalShiftID>
  <POSDeviceID>aeiou</POSDeviceID>
  <AccountCustomerRefNumber>aeiou</AccountCustomerRefNumber>
  <PaymentDeviceID>aeiou</PaymentDeviceID>
  <MerchantID>aeiou</MerchantID>
  <TerminalType>aeiou</TerminalType>
  <SettlementDate>2000-01-23T04:56:07.000Z</SettlementDate>
  <IsManualSettlementDate>true</IsManualSettlementDate>
  <IsBatched>true</IsBatched>
  <StatusDescription>aeiou</StatusDescription>
  <PaymentGroupRefNumber>aeiou</PaymentGroupRefNumber>
  <IsLoyaltyPointsToggleOn>true</IsLoyaltyPointsToggleOn>
  <MerchantFeeAmount>3.149</MerchantFeeAmount>
  <MerchantFeeDescription>aeiou</MerchantFeeDescription>
  <MCPPaymentTriggerID>aeiou</MCPPaymentTriggerID>
  <MCTrackTransactionID>aeiou</MCTrackTransactionID>
  <MCPTransactionID>aeiou</MCPTransactionID>
  <CreditCardLastFour>aeiou</CreditCardLastFour>
  <PaymentUserID>123</PaymentUserID>
  <PaymentUserFullName>aeiou</PaymentUserFullName>
  <ID>123</ID>
  <GUIDstring>aeiou</GUIDstring>
  <BSID>aeiou</BSID>
  <MethodID>123</MethodID>
  <Method>aeiou</Method>
  <Currency>aeiou</Currency>
  <Amount>3.149</Amount>
  <Fee>3.149</Fee>
  <AmountTendered>3.149</AmountTendered>
  <ChangeGiven>3.149</ChangeGiven>
  <CashOut>3.149</CashOut>
  <DateTime>2000-01-23T04:56:07.000Z</DateTime>
  <PaymentDateTime_utc>2000-01-23T04:56:07.000Z</PaymentDateTime_utc>
  <PaymentDateTime_offset>123</PaymentDateTime_offset>
  <Status>aeiou</Status>
  <Token>aeiou</Token>
  <RefNumber>aeiou</RefNumber>
  <TransRefNumber>aeiou</TransRefNumber>
  <TransactionType>aeiou</TransactionType>
  <TransactionTypeDatTypeID>123</TransactionTypeDatTypeID>
  <ReceiptID>aeiou</ReceiptID>
  <ChequeNumber>aeiou</ChequeNumber>
  <AccountCode>aeiou</AccountCode>
  <BankAccountCode>aeiou</BankAccountCode>
  <ExchangeRate>3.149</ExchangeRate>
  <AppliedAmount>3.149</AppliedAmount>
  <AppliedDate>2000-01-23T04:56:07.000Z</AppliedDate>
  <CustomerID>123</CustomerID>
  <CustomerGUIDstring>aeiou</CustomerGUIDstring>
  <CustomerName>aeiou</CustomerName>
  <CustomerBSID>aeiou</CustomerBSID>
  <CustomerRefNumber>aeiou</CustomerRefNumber>
  <AccountCustomerID>123</AccountCustomerID>
  <AccountCustomerName>aeiou</AccountCustomerName>
  <IsAccountCustomer>true</IsAccountCustomer>
  <SupplierID>123</SupplierID>
  <SupplierGUIDstring>aeiou</SupplierGUIDstring>
  <SupplierName>aeiou</SupplierName>
  <SupplierBSID>aeiou</SupplierBSID>
  <SupplierRefNumber>aeiou</SupplierRefNumber>
  <IsActive>true</IsActive>
  <IsRefund>true</IsRefund>
  <IsRefunded>true</IsRefunded>
  <InvoicePaymentID>123</InvoicePaymentID>
  <RepFirstName>aeiou</RepFirstName>
  <RepLastName>aeiou</RepLastName>
  <RepEmailAddress>aeiou</RepEmailAddress>
  <RepUserName>aeiou</RepUserName>
  <CreatedWith>aeiou</CreatedWith>
  <Balance>3.149</Balance>
  <IsManuallyAllocated>true</IsManuallyAllocated>
  <TerminalID>aeiou</TerminalID>
  <null>
    <AmountString>aeiou</AmountString>
    <AppliedAmountString>aeiou</AppliedAmountString>
    <AppliedDateString>aeiou</AppliedDateString>
    <Summary>aeiou</Summary>
    <GUID>00000000-0000-0000-0000-000000000000</GUID>
    <Status>aeiou</Status>
    <TotalInc>3.149</TotalInc>
    <ID>123</ID>
    <GUIDstring>aeiou</GUIDstring>
    <BSID>aeiou</BSID>
    <Amount>3.149</Amount>
    <TransTypeID>123</TransTypeID>
    <TransType>aeiou</TransType>
    <RefNumber>aeiou</RefNumber>
    <AppliedDate>2000-01-23T04:56:07.000Z</AppliedDate>
    <AppliedAmount>3.149</AppliedAmount>
    <Balance>3.149</Balance>
    <MerchantSurcharge>3.149</MerchantSurcharge>
    <MerchantSurchargeLineID>123</MerchantSurchargeLineID>
    <TransSubType>aeiou</TransSubType>
    <AppliedTransID>123</AppliedTransID>
    <AppliedCredit>3.149</AppliedCredit>
    <ClaimRequestID>123</ClaimRequestID>
    <ClaimDescription>aeiou</ClaimDescription>
    <IsEarlyClaimShortPayment>true</IsEarlyClaimShortPayment>
  </null>
  <null>
    <LastImportDateTime>2000-01-23T04:56:07.000Z</LastImportDateTime>
    <LastExportDateTime>2000-01-23T04:56:07.000Z</LastExportDateTime>
    <ID>123</ID>
    <AdaptorID>123</AdaptorID>
    <BSID>aeiou</BSID>
    <LastImportDateTime_utc>2000-01-23T04:56:07.000Z</LastImportDateTime_utc>
    <LastImportDateTime_offset>123</LastImportDateTime_offset>
    <Status>aeiou</Status>
    <Details>aeiou</Details>
    <LastExportDateTime_utc>2000-01-23T04:56:07.000Z</LastExportDateTime_utc>
    <LastExportDateTime_offset>123</LastExportDateTime_offset>
    <SyncCode>aeiou</SyncCode>
    <LastModifiedDateTime_utc>2000-01-23T04:56:07.000Z</LastModifiedDateTime_utc>
    <LastModifiedDateTime_offset>123</LastModifiedDateTime_offset>
  </null>
  <null>
    <CardType>aeiou</CardType>
    <CardNumber>aeiou</CardNumber>
    <CardHolderName>aeiou</CardHolderName>
    <ExpiryMMYY>aeiou</ExpiryMMYY>
    <CardVerificationNumber>aeiou</CardVerificationNumber>
    <FriendlyName>aeiou</FriendlyName>
    <CardToken>aeiou</CardToken>
  </null>
  <null>
    <ID>123</ID>
    <Code>aeiou</Code>
    <Message>aeiou</Message>
    <Description>aeiou</Description>
    <LogDateTime_utc>2000-01-23T04:56:07.000Z</LogDateTime_utc>
    <LogDateTime_offset>123</LogDateTime_offset>
    <PaymentStatus>aeiou</PaymentStatus>
    <PaymentStatus3rdParty>aeiou</PaymentStatus3rdParty>
  </null>
  <PaymentService>aeiou</PaymentService>
  <PayerFeeDescription>aeiou</PayerFeeDescription>
  <PaymentServiceMerchantID>aeiou</PaymentServiceMerchantID>
  <PaymentServiceTerminalID>aeiou</PaymentServiceTerminalID>
  <PaymentAccountGUIDstring>aeiou</PaymentAccountGUIDstring>
  <PaymentType>aeiou</PaymentType>
  <SurchargeAmount>3.149</SurchargeAmount>
  <SurchageDescription>aeiou</SurchageDescription>
  <BatchBSID>aeiou</BatchBSID>
  <null>
    <ID>123</ID>
    <GUIDstring>aeiou</GUIDstring>
    <BSID>aeiou</BSID>
    <Currency>aeiou</Currency>
    <Amount>3.149</Amount>
    <ClaimRequestTotalAmount>3.149</ClaimRequestTotalAmount>
    <PaymentAllocationDateTime_utc>2000-01-23T04:56:07.000Z</PaymentAllocationDateTime_utc>
    <Status>aeiou</Status>
    <RefNumber>aeiou</RefNumber>
    <PaymentRefNumber>aeiou</PaymentRefNumber>
    <CustomerID>123</CustomerID>
    <CustomerName>aeiou</CustomerName>
    <CustomerBSID>aeiou</CustomerBSID>
    <CustomerRefNumber>aeiou</CustomerRefNumber>
    <AccountCustomerID>123</AccountCustomerID>
    <AccountCustomerName>aeiou</AccountCustomerName>
    <AccountCustomerBSID>aeiou</AccountCustomerBSID>
    <AccountCustomerRefNumber>aeiou</AccountCustomerRefNumber>
    <ScheduledDateTime_utc>2000-01-23T04:56:07.000Z</ScheduledDateTime_utc>
    <PaymentDateTime_utc>2000-01-23T04:56:07.000Z</PaymentDateTime_utc>
    <IsUpcomingPayment>true</IsUpcomingPayment>
  </null>
  <AccountCustomerStatementPeriodID>123</AccountCustomerStatementPeriodID>
  <StatementStartDate>2000-01-23T04:56:07.000Z</StatementStartDate>
  <StatementEndDate>2000-01-23T04:56:07.000Z</StatementEndDate>
  <AccountBSID>aeiou</AccountBSID>
  <Description>aeiou</Description>
</PaymentT>' \
 -d 'Custom MIME type example not yet supported: text/xml' \
 -d 'Custom MIME type example not yet supported: application/x-www-form-urlencoded'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        PaymentT paymentT = {"RowNumber":0,"Version":0,"GUID":"00000000-0000-0000-0000-000000000000","AmountString":"string","AmountTenderedString":"string","ChangeGivenString":"string","DateTimeString":"string","DateString":"string","DocID":0,"DatTypeID":0,"ErrorMessage":"string","FeeString":"string","IsGiftCard":true,"IsPaid":true,"POSTerminalShiftID":0,"POSDeviceID":"string","AccountCustomerRefNumber":"string","PaymentDeviceID":"string","MerchantID":"string","TerminalType":"string","SettlementDate":"string","IsManualSettlementDate":true,"IsBatched":true,"StatusDescription":"string","PaymentGroupRefNumber":"string","IsLoyaltyPointsToggleOn":true,"MerchantFeeAmount":0,"MerchantFeeDescription":"string","MCPPaymentTriggerID":"string","MCTrackTransactionID":"string","MCPTransactionID":"string","CreditCardLastFour":"string","PaymentUserID":0,"PaymentUserFullName":"string","ID":0,"GUIDstring":"string","BSID":"string","MethodID":0,"Method":"string","Currency":"string","Amount":0,"Fee":0,"AmountTendered":0,"ChangeGiven":0,"CashOut":0,"DateTime":"string","PaymentDateTime_utc":"string","PaymentDateTime_offset":0,"Status":"string","Token":"string","RefNumber":"string","TransRefNumber":"string","TransactionType":"string","TransactionTypeDatTypeID":0,"ReceiptID":"string","ChequeNumber":"string","AccountCode":"string","BankAccountCode":"string","ExchangeRate":0,"AppliedAmount":0,"AppliedDate":"string","CustomerID":0,"CustomerGUIDstring":"string","CustomerName":"string","CustomerBSID":"string","CustomerRefNumber":"string","AccountCustomerID":0,"AccountCustomerName":"string","IsAccountCustomer":true,"SupplierID":0,"SupplierGUIDstring":"string","SupplierName":"string","SupplierBSID":"string","SupplierRefNumber":"string","IsActive":true,"IsRefund":true,"IsRefunded":true,"InvoicePaymentID":0,"RepFirstName":"string","RepLastName":"string","RepEmailAddress":"string","RepUserName":"string","CreatedWith":"string","Balance":0,"IsManuallyAllocated":true,"TerminalID":"string","RefBusTrans":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"SyncLogs":[{"LastImportDateTime":"string","LastExportDateTime":"string","ID":0,"AdaptorID":0,"BSID":"string","LastImportDateTime_utc":"string","LastImportDateTime_offset":0,"Status":"string","Details":"string","LastExportDateTime_utc":"string","LastExportDateTime_offset":0,"SyncCode":"string","LastModifiedDateTime_utc":"string","LastModifiedDateTime_offset":0}],"CreditCard":{"CardType":"string","CardNumber":"string","CardHolderName":"string","ExpiryMMYY":"string","CardVerificationNumber":"string","FriendlyName":"string","CardToken":"string"},"PaymentLogs":[{"ID":0,"Code":"string","Message":"string","Description":"string","LogDateTime_utc":"string","LogDateTime_offset":0,"PaymentStatus":"string","PaymentStatus3rdParty":"string"}],"PaymentService":"string","PayerFeeDescription":"string","PaymentServiceMerchantID":"string","PaymentServiceTerminalID":"string","PaymentAccountGUIDstring":"string","PaymentType":"string","SurchargeAmount":0,"SurchageDescription":"string","BatchBSID":"string","InvoicePaymentAllocations":[{"ID":0,"GUIDstring":"string","BSID":"string","Currency":"string","Amount":0,"ClaimRequestTotalAmount":0,"PaymentAllocationDateTime_utc":"string","Status":"string","RefNumber":"string","PaymentRefNumber":"string","CustomerID":0,"CustomerName":"string","CustomerBSID":"string","CustomerRefNumber":"string","AccountCustomerID":0,"AccountCustomerName":"string","AccountCustomerBSID":"string","AccountCustomerRefNumber":"string","ScheduledDateTime_utc":"string","PaymentDateTime_utc":"string","IsUpcomingPayment":true,"Invoices":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"CreditNotes":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"SyncLogs":[{"LastImportDateTime":"string","LastExportDateTime":"string","ID":0,"AdaptorID":0,"BSID":"string","LastImportDateTime_utc":"string","LastImportDateTime_offset":0,"Status":"string","Details":"string","LastExportDateTime_utc":"string","LastExportDateTime_offset":0,"SyncCode":"string","LastModifiedDateTime_utc":"string","LastModifiedDateTime_offset":0}]}],"AccountCustomerStatementPeriodID":0,"StatementStartDate":"string","StatementEndDate":"string","AccountBSID":"string","Description":"string"}; // PaymentT | 

        try {
            SynkSaveQueueResponse_PaymentT_ result = apiInstance.customerStatementsProcessPayment(paymentT);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsProcessPayment");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final PaymentT paymentT = new PaymentT(); // PaymentT | 

try {
    final result = await api_instance.customerStatementsProcessPayment(paymentT);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->customerStatementsProcessPayment: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        PaymentT paymentT = {"RowNumber":0,"Version":0,"GUID":"00000000-0000-0000-0000-000000000000","AmountString":"string","AmountTenderedString":"string","ChangeGivenString":"string","DateTimeString":"string","DateString":"string","DocID":0,"DatTypeID":0,"ErrorMessage":"string","FeeString":"string","IsGiftCard":true,"IsPaid":true,"POSTerminalShiftID":0,"POSDeviceID":"string","AccountCustomerRefNumber":"string","PaymentDeviceID":"string","MerchantID":"string","TerminalType":"string","SettlementDate":"string","IsManualSettlementDate":true,"IsBatched":true,"StatusDescription":"string","PaymentGroupRefNumber":"string","IsLoyaltyPointsToggleOn":true,"MerchantFeeAmount":0,"MerchantFeeDescription":"string","MCPPaymentTriggerID":"string","MCTrackTransactionID":"string","MCPTransactionID":"string","CreditCardLastFour":"string","PaymentUserID":0,"PaymentUserFullName":"string","ID":0,"GUIDstring":"string","BSID":"string","MethodID":0,"Method":"string","Currency":"string","Amount":0,"Fee":0,"AmountTendered":0,"ChangeGiven":0,"CashOut":0,"DateTime":"string","PaymentDateTime_utc":"string","PaymentDateTime_offset":0,"Status":"string","Token":"string","RefNumber":"string","TransRefNumber":"string","TransactionType":"string","TransactionTypeDatTypeID":0,"ReceiptID":"string","ChequeNumber":"string","AccountCode":"string","BankAccountCode":"string","ExchangeRate":0,"AppliedAmount":0,"AppliedDate":"string","CustomerID":0,"CustomerGUIDstring":"string","CustomerName":"string","CustomerBSID":"string","CustomerRefNumber":"string","AccountCustomerID":0,"AccountCustomerName":"string","IsAccountCustomer":true,"SupplierID":0,"SupplierGUIDstring":"string","SupplierName":"string","SupplierBSID":"string","SupplierRefNumber":"string","IsActive":true,"IsRefund":true,"IsRefunded":true,"InvoicePaymentID":0,"RepFirstName":"string","RepLastName":"string","RepEmailAddress":"string","RepUserName":"string","CreatedWith":"string","Balance":0,"IsManuallyAllocated":true,"TerminalID":"string","RefBusTrans":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"SyncLogs":[{"LastImportDateTime":"string","LastExportDateTime":"string","ID":0,"AdaptorID":0,"BSID":"string","LastImportDateTime_utc":"string","LastImportDateTime_offset":0,"Status":"string","Details":"string","LastExportDateTime_utc":"string","LastExportDateTime_offset":0,"SyncCode":"string","LastModifiedDateTime_utc":"string","LastModifiedDateTime_offset":0}],"CreditCard":{"CardType":"string","CardNumber":"string","CardHolderName":"string","ExpiryMMYY":"string","CardVerificationNumber":"string","FriendlyName":"string","CardToken":"string"},"PaymentLogs":[{"ID":0,"Code":"string","Message":"string","Description":"string","LogDateTime_utc":"string","LogDateTime_offset":0,"PaymentStatus":"string","PaymentStatus3rdParty":"string"}],"PaymentService":"string","PayerFeeDescription":"string","PaymentServiceMerchantID":"string","PaymentServiceTerminalID":"string","PaymentAccountGUIDstring":"string","PaymentType":"string","SurchargeAmount":0,"SurchageDescription":"string","BatchBSID":"string","InvoicePaymentAllocations":[{"ID":0,"GUIDstring":"string","BSID":"string","Currency":"string","Amount":0,"ClaimRequestTotalAmount":0,"PaymentAllocationDateTime_utc":"string","Status":"string","RefNumber":"string","PaymentRefNumber":"string","CustomerID":0,"CustomerName":"string","CustomerBSID":"string","CustomerRefNumber":"string","AccountCustomerID":0,"AccountCustomerName":"string","AccountCustomerBSID":"string","AccountCustomerRefNumber":"string","ScheduledDateTime_utc":"string","PaymentDateTime_utc":"string","IsUpcomingPayment":true,"Invoices":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"CreditNotes":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"SyncLogs":[{"LastImportDateTime":"string","LastExportDateTime":"string","ID":0,"AdaptorID":0,"BSID":"string","LastImportDateTime_utc":"string","LastImportDateTime_offset":0,"Status":"string","Details":"string","LastExportDateTime_utc":"string","LastExportDateTime_offset":0,"SyncCode":"string","LastModifiedDateTime_utc":"string","LastModifiedDateTime_offset":0}]}],"AccountCustomerStatementPeriodID":0,"StatementStartDate":"string","StatementEndDate":"string","AccountBSID":"string","Description":"string"}; // PaymentT | 

        try {
            SynkSaveQueueResponse_PaymentT_ result = apiInstance.customerStatementsProcessPayment(paymentT);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsProcessPayment");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
PaymentT *paymentT = {"RowNumber":0,"Version":0,"GUID":"00000000-0000-0000-0000-000000000000","AmountString":"string","AmountTenderedString":"string","ChangeGivenString":"string","DateTimeString":"string","DateString":"string","DocID":0,"DatTypeID":0,"ErrorMessage":"string","FeeString":"string","IsGiftCard":true,"IsPaid":true,"POSTerminalShiftID":0,"POSDeviceID":"string","AccountCustomerRefNumber":"string","PaymentDeviceID":"string","MerchantID":"string","TerminalType":"string","SettlementDate":"string","IsManualSettlementDate":true,"IsBatched":true,"StatusDescription":"string","PaymentGroupRefNumber":"string","IsLoyaltyPointsToggleOn":true,"MerchantFeeAmount":0,"MerchantFeeDescription":"string","MCPPaymentTriggerID":"string","MCTrackTransactionID":"string","MCPTransactionID":"string","CreditCardLastFour":"string","PaymentUserID":0,"PaymentUserFullName":"string","ID":0,"GUIDstring":"string","BSID":"string","MethodID":0,"Method":"string","Currency":"string","Amount":0,"Fee":0,"AmountTendered":0,"ChangeGiven":0,"CashOut":0,"DateTime":"string","PaymentDateTime_utc":"string","PaymentDateTime_offset":0,"Status":"string","Token":"string","RefNumber":"string","TransRefNumber":"string","TransactionType":"string","TransactionTypeDatTypeID":0,"ReceiptID":"string","ChequeNumber":"string","AccountCode":"string","BankAccountCode":"string","ExchangeRate":0,"AppliedAmount":0,"AppliedDate":"string","CustomerID":0,"CustomerGUIDstring":"string","CustomerName":"string","CustomerBSID":"string","CustomerRefNumber":"string","AccountCustomerID":0,"AccountCustomerName":"string","IsAccountCustomer":true,"SupplierID":0,"SupplierGUIDstring":"string","SupplierName":"string","SupplierBSID":"string","SupplierRefNumber":"string","IsActive":true,"IsRefund":true,"IsRefunded":true,"InvoicePaymentID":0,"RepFirstName":"string","RepLastName":"string","RepEmailAddress":"string","RepUserName":"string","CreatedWith":"string","Balance":0,"IsManuallyAllocated":true,"TerminalID":"string","RefBusTrans":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"SyncLogs":[{"LastImportDateTime":"string","LastExportDateTime":"string","ID":0,"AdaptorID":0,"BSID":"string","LastImportDateTime_utc":"string","LastImportDateTime_offset":0,"Status":"string","Details":"string","LastExportDateTime_utc":"string","LastExportDateTime_offset":0,"SyncCode":"string","LastModifiedDateTime_utc":"string","LastModifiedDateTime_offset":0}],"CreditCard":{"CardType":"string","CardNumber":"string","CardHolderName":"string","ExpiryMMYY":"string","CardVerificationNumber":"string","FriendlyName":"string","CardToken":"string"},"PaymentLogs":[{"ID":0,"Code":"string","Message":"string","Description":"string","LogDateTime_utc":"string","LogDateTime_offset":0,"PaymentStatus":"string","PaymentStatus3rdParty":"string"}],"PaymentService":"string","PayerFeeDescription":"string","PaymentServiceMerchantID":"string","PaymentServiceTerminalID":"string","PaymentAccountGUIDstring":"string","PaymentType":"string","SurchargeAmount":0,"SurchageDescription":"string","BatchBSID":"string","InvoicePaymentAllocations":[{"ID":0,"GUIDstring":"string","BSID":"string","Currency":"string","Amount":0,"ClaimRequestTotalAmount":0,"PaymentAllocationDateTime_utc":"string","Status":"string","RefNumber":"string","PaymentRefNumber":"string","CustomerID":0,"CustomerName":"string","CustomerBSID":"string","CustomerRefNumber":"string","AccountCustomerID":0,"AccountCustomerName":"string","AccountCustomerBSID":"string","AccountCustomerRefNumber":"string","ScheduledDateTime_utc":"string","PaymentDateTime_utc":"string","IsUpcomingPayment":true,"Invoices":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"CreditNotes":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"SyncLogs":[{"LastImportDateTime":"string","LastExportDateTime":"string","ID":0,"AdaptorID":0,"BSID":"string","LastImportDateTime_utc":"string","LastImportDateTime_offset":0,"Status":"string","Details":"string","LastExportDateTime_utc":"string","LastExportDateTime_offset":0,"SyncCode":"string","LastModifiedDateTime_utc":"string","LastModifiedDateTime_offset":0}]}],"AccountCustomerStatementPeriodID":0,"StatementStartDate":"string","StatementEndDate":"string","AccountBSID":"string","Description":"string"}; //  (optional)

// CustomerStatements_ProcessPayment
[apiInstance customerStatementsProcessPaymentWith:paymentT
              completionHandler: ^(SynkSaveQueueResponse_PaymentT_ output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiCustomerStatements = require('as_server_api_customer_statements');

// Create an instance of the API class
var api = new AsServerApiCustomerStatements.DefaultApi()
var opts = {
  'paymentT': {"RowNumber":0,"Version":0,"GUID":"00000000-0000-0000-0000-000000000000","AmountString":"string","AmountTenderedString":"string","ChangeGivenString":"string","DateTimeString":"string","DateString":"string","DocID":0,"DatTypeID":0,"ErrorMessage":"string","FeeString":"string","IsGiftCard":true,"IsPaid":true,"POSTerminalShiftID":0,"POSDeviceID":"string","AccountCustomerRefNumber":"string","PaymentDeviceID":"string","MerchantID":"string","TerminalType":"string","SettlementDate":"string","IsManualSettlementDate":true,"IsBatched":true,"StatusDescription":"string","PaymentGroupRefNumber":"string","IsLoyaltyPointsToggleOn":true,"MerchantFeeAmount":0,"MerchantFeeDescription":"string","MCPPaymentTriggerID":"string","MCTrackTransactionID":"string","MCPTransactionID":"string","CreditCardLastFour":"string","PaymentUserID":0,"PaymentUserFullName":"string","ID":0,"GUIDstring":"string","BSID":"string","MethodID":0,"Method":"string","Currency":"string","Amount":0,"Fee":0,"AmountTendered":0,"ChangeGiven":0,"CashOut":0,"DateTime":"string","PaymentDateTime_utc":"string","PaymentDateTime_offset":0,"Status":"string","Token":"string","RefNumber":"string","TransRefNumber":"string","TransactionType":"string","TransactionTypeDatTypeID":0,"ReceiptID":"string","ChequeNumber":"string","AccountCode":"string","BankAccountCode":"string","ExchangeRate":0,"AppliedAmount":0,"AppliedDate":"string","CustomerID":0,"CustomerGUIDstring":"string","CustomerName":"string","CustomerBSID":"string","CustomerRefNumber":"string","AccountCustomerID":0,"AccountCustomerName":"string","IsAccountCustomer":true,"SupplierID":0,"SupplierGUIDstring":"string","SupplierName":"string","SupplierBSID":"string","SupplierRefNumber":"string","IsActive":true,"IsRefund":true,"IsRefunded":true,"InvoicePaymentID":0,"RepFirstName":"string","RepLastName":"string","RepEmailAddress":"string","RepUserName":"string","CreatedWith":"string","Balance":0,"IsManuallyAllocated":true,"TerminalID":"string","RefBusTrans":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"SyncLogs":[{"LastImportDateTime":"string","LastExportDateTime":"string","ID":0,"AdaptorID":0,"BSID":"string","LastImportDateTime_utc":"string","LastImportDateTime_offset":0,"Status":"string","Details":"string","LastExportDateTime_utc":"string","LastExportDateTime_offset":0,"SyncCode":"string","LastModifiedDateTime_utc":"string","LastModifiedDateTime_offset":0}],"CreditCard":{"CardType":"string","CardNumber":"string","CardHolderName":"string","ExpiryMMYY":"string","CardVerificationNumber":"string","FriendlyName":"string","CardToken":"string"},"PaymentLogs":[{"ID":0,"Code":"string","Message":"string","Description":"string","LogDateTime_utc":"string","LogDateTime_offset":0,"PaymentStatus":"string","PaymentStatus3rdParty":"string"}],"PaymentService":"string","PayerFeeDescription":"string","PaymentServiceMerchantID":"string","PaymentServiceTerminalID":"string","PaymentAccountGUIDstring":"string","PaymentType":"string","SurchargeAmount":0,"SurchageDescription":"string","BatchBSID":"string","InvoicePaymentAllocations":[{"ID":0,"GUIDstring":"string","BSID":"string","Currency":"string","Amount":0,"ClaimRequestTotalAmount":0,"PaymentAllocationDateTime_utc":"string","Status":"string","RefNumber":"string","PaymentRefNumber":"string","CustomerID":0,"CustomerName":"string","CustomerBSID":"string","CustomerRefNumber":"string","AccountCustomerID":0,"AccountCustomerName":"string","AccountCustomerBSID":"string","AccountCustomerRefNumber":"string","ScheduledDateTime_utc":"string","PaymentDateTime_utc":"string","IsUpcomingPayment":true,"Invoices":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"CreditNotes":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"SyncLogs":[{"LastImportDateTime":"string","LastExportDateTime":"string","ID":0,"AdaptorID":0,"BSID":"string","LastImportDateTime_utc":"string","LastImportDateTime_offset":0,"Status":"string","Details":"string","LastExportDateTime_utc":"string","LastExportDateTime_offset":0,"SyncCode":"string","LastModifiedDateTime_utc":"string","LastModifiedDateTime_offset":0}]}],"AccountCustomerStatementPeriodID":0,"StatementStartDate":"string","StatementEndDate":"string","AccountBSID":"string","Description":"string"} // {PaymentT} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.customerStatementsProcessPayment(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class customerStatementsProcessPaymentExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var paymentT = new PaymentT(); // PaymentT |  (optional) 

            try {
                // CustomerStatements_ProcessPayment
                SynkSaveQueueResponse_PaymentT_ result = apiInstance.customerStatementsProcessPayment(paymentT);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.customerStatementsProcessPayment: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$paymentT = {"RowNumber":0,"Version":0,"GUID":"00000000-0000-0000-0000-000000000000","AmountString":"string","AmountTenderedString":"string","ChangeGivenString":"string","DateTimeString":"string","DateString":"string","DocID":0,"DatTypeID":0,"ErrorMessage":"string","FeeString":"string","IsGiftCard":true,"IsPaid":true,"POSTerminalShiftID":0,"POSDeviceID":"string","AccountCustomerRefNumber":"string","PaymentDeviceID":"string","MerchantID":"string","TerminalType":"string","SettlementDate":"string","IsManualSettlementDate":true,"IsBatched":true,"StatusDescription":"string","PaymentGroupRefNumber":"string","IsLoyaltyPointsToggleOn":true,"MerchantFeeAmount":0,"MerchantFeeDescription":"string","MCPPaymentTriggerID":"string","MCTrackTransactionID":"string","MCPTransactionID":"string","CreditCardLastFour":"string","PaymentUserID":0,"PaymentUserFullName":"string","ID":0,"GUIDstring":"string","BSID":"string","MethodID":0,"Method":"string","Currency":"string","Amount":0,"Fee":0,"AmountTendered":0,"ChangeGiven":0,"CashOut":0,"DateTime":"string","PaymentDateTime_utc":"string","PaymentDateTime_offset":0,"Status":"string","Token":"string","RefNumber":"string","TransRefNumber":"string","TransactionType":"string","TransactionTypeDatTypeID":0,"ReceiptID":"string","ChequeNumber":"string","AccountCode":"string","BankAccountCode":"string","ExchangeRate":0,"AppliedAmount":0,"AppliedDate":"string","CustomerID":0,"CustomerGUIDstring":"string","CustomerName":"string","CustomerBSID":"string","CustomerRefNumber":"string","AccountCustomerID":0,"AccountCustomerName":"string","IsAccountCustomer":true,"SupplierID":0,"SupplierGUIDstring":"string","SupplierName":"string","SupplierBSID":"string","SupplierRefNumber":"string","IsActive":true,"IsRefund":true,"IsRefunded":true,"InvoicePaymentID":0,"RepFirstName":"string","RepLastName":"string","RepEmailAddress":"string","RepUserName":"string","CreatedWith":"string","Balance":0,"IsManuallyAllocated":true,"TerminalID":"string","RefBusTrans":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"SyncLogs":[{"LastImportDateTime":"string","LastExportDateTime":"string","ID":0,"AdaptorID":0,"BSID":"string","LastImportDateTime_utc":"string","LastImportDateTime_offset":0,"Status":"string","Details":"string","LastExportDateTime_utc":"string","LastExportDateTime_offset":0,"SyncCode":"string","LastModifiedDateTime_utc":"string","LastModifiedDateTime_offset":0}],"CreditCard":{"CardType":"string","CardNumber":"string","CardHolderName":"string","ExpiryMMYY":"string","CardVerificationNumber":"string","FriendlyName":"string","CardToken":"string"},"PaymentLogs":[{"ID":0,"Code":"string","Message":"string","Description":"string","LogDateTime_utc":"string","LogDateTime_offset":0,"PaymentStatus":"string","PaymentStatus3rdParty":"string"}],"PaymentService":"string","PayerFeeDescription":"string","PaymentServiceMerchantID":"string","PaymentServiceTerminalID":"string","PaymentAccountGUIDstring":"string","PaymentType":"string","SurchargeAmount":0,"SurchageDescription":"string","BatchBSID":"string","InvoicePaymentAllocations":[{"ID":0,"GUIDstring":"string","BSID":"string","Currency":"string","Amount":0,"ClaimRequestTotalAmount":0,"PaymentAllocationDateTime_utc":"string","Status":"string","RefNumber":"string","PaymentRefNumber":"string","CustomerID":0,"CustomerName":"string","CustomerBSID":"string","CustomerRefNumber":"string","AccountCustomerID":0,"AccountCustomerName":"string","AccountCustomerBSID":"string","AccountCustomerRefNumber":"string","ScheduledDateTime_utc":"string","PaymentDateTime_utc":"string","IsUpcomingPayment":true,"Invoices":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"CreditNotes":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"SyncLogs":[{"LastImportDateTime":"string","LastExportDateTime":"string","ID":0,"AdaptorID":0,"BSID":"string","LastImportDateTime_utc":"string","LastImportDateTime_offset":0,"Status":"string","Details":"string","LastExportDateTime_utc":"string","LastExportDateTime_offset":0,"SyncCode":"string","LastModifiedDateTime_utc":"string","LastModifiedDateTime_offset":0}]}],"AccountCustomerStatementPeriodID":0,"StatementStartDate":"string","StatementEndDate":"string","AccountBSID":"string","Description":"string"}; // PaymentT | 

try {
    $result = $api_instance->customerStatementsProcessPayment($paymentT);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->customerStatementsProcessPayment: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $paymentT = WWW::OPenAPIClient::Object::PaymentT->new(); # PaymentT | 

eval {
    my $result = $api_instance->customerStatementsProcessPayment(paymentT => $paymentT);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->customerStatementsProcessPayment: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
paymentT = {"RowNumber":0,"Version":0,"GUID":"00000000-0000-0000-0000-000000000000","AmountString":"string","AmountTenderedString":"string","ChangeGivenString":"string","DateTimeString":"string","DateString":"string","DocID":0,"DatTypeID":0,"ErrorMessage":"string","FeeString":"string","IsGiftCard":true,"IsPaid":true,"POSTerminalShiftID":0,"POSDeviceID":"string","AccountCustomerRefNumber":"string","PaymentDeviceID":"string","MerchantID":"string","TerminalType":"string","SettlementDate":"string","IsManualSettlementDate":true,"IsBatched":true,"StatusDescription":"string","PaymentGroupRefNumber":"string","IsLoyaltyPointsToggleOn":true,"MerchantFeeAmount":0,"MerchantFeeDescription":"string","MCPPaymentTriggerID":"string","MCTrackTransactionID":"string","MCPTransactionID":"string","CreditCardLastFour":"string","PaymentUserID":0,"PaymentUserFullName":"string","ID":0,"GUIDstring":"string","BSID":"string","MethodID":0,"Method":"string","Currency":"string","Amount":0,"Fee":0,"AmountTendered":0,"ChangeGiven":0,"CashOut":0,"DateTime":"string","PaymentDateTime_utc":"string","PaymentDateTime_offset":0,"Status":"string","Token":"string","RefNumber":"string","TransRefNumber":"string","TransactionType":"string","TransactionTypeDatTypeID":0,"ReceiptID":"string","ChequeNumber":"string","AccountCode":"string","BankAccountCode":"string","ExchangeRate":0,"AppliedAmount":0,"AppliedDate":"string","CustomerID":0,"CustomerGUIDstring":"string","CustomerName":"string","CustomerBSID":"string","CustomerRefNumber":"string","AccountCustomerID":0,"AccountCustomerName":"string","IsAccountCustomer":true,"SupplierID":0,"SupplierGUIDstring":"string","SupplierName":"string","SupplierBSID":"string","SupplierRefNumber":"string","IsActive":true,"IsRefund":true,"IsRefunded":true,"InvoicePaymentID":0,"RepFirstName":"string","RepLastName":"string","RepEmailAddress":"string","RepUserName":"string","CreatedWith":"string","Balance":0,"IsManuallyAllocated":true,"TerminalID":"string","RefBusTrans":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"SyncLogs":[{"LastImportDateTime":"string","LastExportDateTime":"string","ID":0,"AdaptorID":0,"BSID":"string","LastImportDateTime_utc":"string","LastImportDateTime_offset":0,"Status":"string","Details":"string","LastExportDateTime_utc":"string","LastExportDateTime_offset":0,"SyncCode":"string","LastModifiedDateTime_utc":"string","LastModifiedDateTime_offset":0}],"CreditCard":{"CardType":"string","CardNumber":"string","CardHolderName":"string","ExpiryMMYY":"string","CardVerificationNumber":"string","FriendlyName":"string","CardToken":"string"},"PaymentLogs":[{"ID":0,"Code":"string","Message":"string","Description":"string","LogDateTime_utc":"string","LogDateTime_offset":0,"PaymentStatus":"string","PaymentStatus3rdParty":"string"}],"PaymentService":"string","PayerFeeDescription":"string","PaymentServiceMerchantID":"string","PaymentServiceTerminalID":"string","PaymentAccountGUIDstring":"string","PaymentType":"string","SurchargeAmount":0,"SurchageDescription":"string","BatchBSID":"string","InvoicePaymentAllocations":[{"ID":0,"GUIDstring":"string","BSID":"string","Currency":"string","Amount":0,"ClaimRequestTotalAmount":0,"PaymentAllocationDateTime_utc":"string","Status":"string","RefNumber":"string","PaymentRefNumber":"string","CustomerID":0,"CustomerName":"string","CustomerBSID":"string","CustomerRefNumber":"string","AccountCustomerID":0,"AccountCustomerName":"string","AccountCustomerBSID":"string","AccountCustomerRefNumber":"string","ScheduledDateTime_utc":"string","PaymentDateTime_utc":"string","IsUpcomingPayment":true,"Invoices":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"CreditNotes":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"SyncLogs":[{"LastImportDateTime":"string","LastExportDateTime":"string","ID":0,"AdaptorID":0,"BSID":"string","LastImportDateTime_utc":"string","LastImportDateTime_offset":0,"Status":"string","Details":"string","LastExportDateTime_utc":"string","LastExportDateTime_offset":0,"SyncCode":"string","LastModifiedDateTime_utc":"string","LastModifiedDateTime_offset":0}]}],"AccountCustomerStatementPeriodID":0,"StatementStartDate":"string","StatementEndDate":"string","AccountBSID":"string","Description":"string"} # PaymentT |  (optional)

try:
    # CustomerStatements_ProcessPayment
    api_response = api_instance.customer_statements_process_payment(paymentT=paymentT)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->customerStatementsProcessPayment: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let paymentT = {"RowNumber":0,"Version":0,"GUID":"00000000-0000-0000-0000-000000000000","AmountString":"string","AmountTenderedString":"string","ChangeGivenString":"string","DateTimeString":"string","DateString":"string","DocID":0,"DatTypeID":0,"ErrorMessage":"string","FeeString":"string","IsGiftCard":true,"IsPaid":true,"POSTerminalShiftID":0,"POSDeviceID":"string","AccountCustomerRefNumber":"string","PaymentDeviceID":"string","MerchantID":"string","TerminalType":"string","SettlementDate":"string","IsManualSettlementDate":true,"IsBatched":true,"StatusDescription":"string","PaymentGroupRefNumber":"string","IsLoyaltyPointsToggleOn":true,"MerchantFeeAmount":0,"MerchantFeeDescription":"string","MCPPaymentTriggerID":"string","MCTrackTransactionID":"string","MCPTransactionID":"string","CreditCardLastFour":"string","PaymentUserID":0,"PaymentUserFullName":"string","ID":0,"GUIDstring":"string","BSID":"string","MethodID":0,"Method":"string","Currency":"string","Amount":0,"Fee":0,"AmountTendered":0,"ChangeGiven":0,"CashOut":0,"DateTime":"string","PaymentDateTime_utc":"string","PaymentDateTime_offset":0,"Status":"string","Token":"string","RefNumber":"string","TransRefNumber":"string","TransactionType":"string","TransactionTypeDatTypeID":0,"ReceiptID":"string","ChequeNumber":"string","AccountCode":"string","BankAccountCode":"string","ExchangeRate":0,"AppliedAmount":0,"AppliedDate":"string","CustomerID":0,"CustomerGUIDstring":"string","CustomerName":"string","CustomerBSID":"string","CustomerRefNumber":"string","AccountCustomerID":0,"AccountCustomerName":"string","IsAccountCustomer":true,"SupplierID":0,"SupplierGUIDstring":"string","SupplierName":"string","SupplierBSID":"string","SupplierRefNumber":"string","IsActive":true,"IsRefund":true,"IsRefunded":true,"InvoicePaymentID":0,"RepFirstName":"string","RepLastName":"string","RepEmailAddress":"string","RepUserName":"string","CreatedWith":"string","Balance":0,"IsManuallyAllocated":true,"TerminalID":"string","RefBusTrans":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"SyncLogs":[{"LastImportDateTime":"string","LastExportDateTime":"string","ID":0,"AdaptorID":0,"BSID":"string","LastImportDateTime_utc":"string","LastImportDateTime_offset":0,"Status":"string","Details":"string","LastExportDateTime_utc":"string","LastExportDateTime_offset":0,"SyncCode":"string","LastModifiedDateTime_utc":"string","LastModifiedDateTime_offset":0}],"CreditCard":{"CardType":"string","CardNumber":"string","CardHolderName":"string","ExpiryMMYY":"string","CardVerificationNumber":"string","FriendlyName":"string","CardToken":"string"},"PaymentLogs":[{"ID":0,"Code":"string","Message":"string","Description":"string","LogDateTime_utc":"string","LogDateTime_offset":0,"PaymentStatus":"string","PaymentStatus3rdParty":"string"}],"PaymentService":"string","PayerFeeDescription":"string","PaymentServiceMerchantID":"string","PaymentServiceTerminalID":"string","PaymentAccountGUIDstring":"string","PaymentType":"string","SurchargeAmount":0,"SurchageDescription":"string","BatchBSID":"string","InvoicePaymentAllocations":[{"ID":0,"GUIDstring":"string","BSID":"string","Currency":"string","Amount":0,"ClaimRequestTotalAmount":0,"PaymentAllocationDateTime_utc":"string","Status":"string","RefNumber":"string","PaymentRefNumber":"string","CustomerID":0,"CustomerName":"string","CustomerBSID":"string","CustomerRefNumber":"string","AccountCustomerID":0,"AccountCustomerName":"string","AccountCustomerBSID":"string","AccountCustomerRefNumber":"string","ScheduledDateTime_utc":"string","PaymentDateTime_utc":"string","IsUpcomingPayment":true,"Invoices":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"CreditNotes":[{"AmountString":"string","AppliedAmountString":"string","AppliedDateString":"string","Summary":"string","GUID":"00000000-0000-0000-0000-000000000000","Status":"string","TotalInc":0,"ID":0,"GUIDstring":"string","BSID":"string","Amount":0,"TransTypeID":0,"TransType":"string","RefNumber":"string","AppliedDate":"string","AppliedAmount":0,"Balance":0,"MerchantSurcharge":0,"MerchantSurchargeLineID":0,"TransSubType":"string","AppliedTransID":0,"AppliedCredit":0,"ClaimRequestID":0,"ClaimDescription":"string","IsEarlyClaimShortPayment":true}],"SyncLogs":[{"LastImportDateTime":"string","LastExportDateTime":"string","ID":0,"AdaptorID":0,"BSID":"string","LastImportDateTime_utc":"string","LastImportDateTime_offset":0,"Status":"string","Details":"string","LastExportDateTime_utc":"string","LastExportDateTime_offset":0,"SyncCode":"string","LastModifiedDateTime_utc":"string","LastModifiedDateTime_offset":0}]}],"AccountCustomerStatementPeriodID":0,"StatementStartDate":"string","StatementEndDate":"string","AccountBSID":"string","Description":"string"}; // PaymentT

    let mut context = DefaultApi::Context::default();
    let result = client.customerStatementsProcessPayment(paymentT, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
paymentT

Responses


customerStatementsRefresh

CustomerStatements_Refresh


/CustomerStatements/refresh/{customerID}

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/CustomerStatements/refresh/{customerID}"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer customerID = 56; // Integer | 

        try {
            ActionResults result = apiInstance.customerStatementsRefresh(customerID);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsRefresh");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Integer customerID = new Integer(); // Integer | 

try {
    final result = await api_instance.customerStatementsRefresh(customerID);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->customerStatementsRefresh: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer customerID = 56; // Integer | 

        try {
            ActionResults result = apiInstance.customerStatementsRefresh(customerID);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsRefresh");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *customerID = 56; //  (default to null)

// CustomerStatements_Refresh
[apiInstance customerStatementsRefreshWith:customerID
              completionHandler: ^(ActionResults output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiCustomerStatements = require('as_server_api_customer_statements');

// Create an instance of the API class
var api = new AsServerApiCustomerStatements.DefaultApi()
var customerID = 56; // {Integer} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.customerStatementsRefresh(customerID, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class customerStatementsRefreshExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var customerID = 56;  // Integer |  (default to null)

            try {
                // CustomerStatements_Refresh
                ActionResults result = apiInstance.customerStatementsRefresh(customerID);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.customerStatementsRefresh: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$customerID = 56; // Integer | 

try {
    $result = $api_instance->customerStatementsRefresh($customerID);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->customerStatementsRefresh: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $customerID = 56; # Integer | 

eval {
    my $result = $api_instance->customerStatementsRefresh(customerID => $customerID);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->customerStatementsRefresh: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
customerID = 56 # Integer |  (default to null)

try:
    # CustomerStatements_Refresh
    api_response = api_instance.customer_statements_refresh(customerID)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->customerStatementsRefresh: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let customerID = 56; // Integer

    let mut context = DefaultApi::Context::default();
    let result = client.customerStatementsRefresh(customerID, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Path parameters
Name Description
customerID*
Integer (int32)
Required

Responses


customerStatementsSendCreditNoteEmail

CustomerStatements_SendCreditNoteEmail


/CustomerStatements/creditnote/alert

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 -H "Content-Type: application/json,text/json,application/xml,text/xml,application/x-www-form-urlencoded" \
 "https://api.dev.spenda.co/api/CustomerStatements/creditnote/alert" \
 -d '{
  "Cc" : "Cc",
  "BccList" : [ {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  }, {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  } ],
  "TransactionGuid" : "00000000-0000-0000-0000-000000000000",
  "Bcc" : "Bcc",
  "CcList" : [ {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  }, {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  } ],
  "To" : "To",
  "TransID" : 0,
  "ToList" : [ {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  }, {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  } ]
}' \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '<CustomerTransactionAlertRequest>
  <TransID>123</TransID>
  <TransactionGuid>00000000-0000-0000-0000-000000000000</TransactionGuid>
  <null>
    <BusinessContactID>123</BusinessContactID>
    <ContactFirstName>aeiou</ContactFirstName>
    <ContactLastName>aeiou</ContactLastName>
    <ContactEmailAddress>aeiou</ContactEmailAddress>
    <ContactPhone>aeiou</ContactPhone>
    <ContactCustomerName>aeiou</ContactCustomerName>
  </null>
  <To>aeiou</To>
  <null>
    <BusinessContactID>123</BusinessContactID>
    <ContactFirstName>aeiou</ContactFirstName>
    <ContactLastName>aeiou</ContactLastName>
    <ContactEmailAddress>aeiou</ContactEmailAddress>
    <ContactPhone>aeiou</ContactPhone>
    <ContactCustomerName>aeiou</ContactCustomerName>
  </null>
  <Cc>aeiou</Cc>
  <null>
    <BusinessContactID>123</BusinessContactID>
    <ContactFirstName>aeiou</ContactFirstName>
    <ContactLastName>aeiou</ContactLastName>
    <ContactEmailAddress>aeiou</ContactEmailAddress>
    <ContactPhone>aeiou</ContactPhone>
    <ContactCustomerName>aeiou</ContactCustomerName>
  </null>
  <Bcc>aeiou</Bcc>
</CustomerTransactionAlertRequest>' \
 -d 'Custom MIME type example not yet supported: text/xml' \
 -d 'Custom MIME type example not yet supported: application/x-www-form-urlencoded'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        CustomerTransactionAlertRequest customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; // CustomerTransactionAlertRequest | 

        try {
            ActionResults result = apiInstance.customerStatementsSendCreditNoteEmail(customerTransactionAlertRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsSendCreditNoteEmail");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final CustomerTransactionAlertRequest customerTransactionAlertRequest = new CustomerTransactionAlertRequest(); // CustomerTransactionAlertRequest | 

try {
    final result = await api_instance.customerStatementsSendCreditNoteEmail(customerTransactionAlertRequest);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->customerStatementsSendCreditNoteEmail: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        CustomerTransactionAlertRequest customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; // CustomerTransactionAlertRequest | 

        try {
            ActionResults result = apiInstance.customerStatementsSendCreditNoteEmail(customerTransactionAlertRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsSendCreditNoteEmail");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
CustomerTransactionAlertRequest *customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; //  (optional)

// CustomerStatements_SendCreditNoteEmail
[apiInstance customerStatementsSendCreditNoteEmailWith:customerTransactionAlertRequest
              completionHandler: ^(ActionResults output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiCustomerStatements = require('as_server_api_customer_statements');

// Create an instance of the API class
var api = new AsServerApiCustomerStatements.DefaultApi()
var opts = {
  'customerTransactionAlertRequest': {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"} // {CustomerTransactionAlertRequest} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.customerStatementsSendCreditNoteEmail(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class customerStatementsSendCreditNoteEmailExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var customerTransactionAlertRequest = new CustomerTransactionAlertRequest(); // CustomerTransactionAlertRequest |  (optional) 

            try {
                // CustomerStatements_SendCreditNoteEmail
                ActionResults result = apiInstance.customerStatementsSendCreditNoteEmail(customerTransactionAlertRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.customerStatementsSendCreditNoteEmail: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; // CustomerTransactionAlertRequest | 

try {
    $result = $api_instance->customerStatementsSendCreditNoteEmail($customerTransactionAlertRequest);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->customerStatementsSendCreditNoteEmail: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $customerTransactionAlertRequest = WWW::OPenAPIClient::Object::CustomerTransactionAlertRequest->new(); # CustomerTransactionAlertRequest | 

eval {
    my $result = $api_instance->customerStatementsSendCreditNoteEmail(customerTransactionAlertRequest => $customerTransactionAlertRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->customerStatementsSendCreditNoteEmail: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"} # CustomerTransactionAlertRequest |  (optional)

try:
    # CustomerStatements_SendCreditNoteEmail
    api_response = api_instance.customer_statements_send_credit_note_email(customerTransactionAlertRequest=customerTransactionAlertRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->customerStatementsSendCreditNoteEmail: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; // CustomerTransactionAlertRequest

    let mut context = DefaultApi::Context::default();
    let result = client.customerStatementsSendCreditNoteEmail(customerTransactionAlertRequest, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
customerTransactionAlertRequest

Responses


customerStatementsSendInvoiceEmail

CustomerStatements_SendInvoiceEmail


/CustomerStatements/invoice/alert

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 -H "Content-Type: application/json,text/json,application/xml,text/xml,application/x-www-form-urlencoded" \
 "https://api.dev.spenda.co/api/CustomerStatements/invoice/alert" \
 -d '{
  "Cc" : "Cc",
  "BccList" : [ {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  }, {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  } ],
  "TransactionGuid" : "00000000-0000-0000-0000-000000000000",
  "Bcc" : "Bcc",
  "CcList" : [ {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  }, {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  } ],
  "To" : "To",
  "TransID" : 0,
  "ToList" : [ {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  }, {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  } ]
}' \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '<CustomerTransactionAlertRequest>
  <TransID>123</TransID>
  <TransactionGuid>00000000-0000-0000-0000-000000000000</TransactionGuid>
  <null>
    <BusinessContactID>123</BusinessContactID>
    <ContactFirstName>aeiou</ContactFirstName>
    <ContactLastName>aeiou</ContactLastName>
    <ContactEmailAddress>aeiou</ContactEmailAddress>
    <ContactPhone>aeiou</ContactPhone>
    <ContactCustomerName>aeiou</ContactCustomerName>
  </null>
  <To>aeiou</To>
  <null>
    <BusinessContactID>123</BusinessContactID>
    <ContactFirstName>aeiou</ContactFirstName>
    <ContactLastName>aeiou</ContactLastName>
    <ContactEmailAddress>aeiou</ContactEmailAddress>
    <ContactPhone>aeiou</ContactPhone>
    <ContactCustomerName>aeiou</ContactCustomerName>
  </null>
  <Cc>aeiou</Cc>
  <null>
    <BusinessContactID>123</BusinessContactID>
    <ContactFirstName>aeiou</ContactFirstName>
    <ContactLastName>aeiou</ContactLastName>
    <ContactEmailAddress>aeiou</ContactEmailAddress>
    <ContactPhone>aeiou</ContactPhone>
    <ContactCustomerName>aeiou</ContactCustomerName>
  </null>
  <Bcc>aeiou</Bcc>
</CustomerTransactionAlertRequest>' \
 -d 'Custom MIME type example not yet supported: text/xml' \
 -d 'Custom MIME type example not yet supported: application/x-www-form-urlencoded'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        CustomerTransactionAlertRequest customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; // CustomerTransactionAlertRequest | 

        try {
            ActionResults result = apiInstance.customerStatementsSendInvoiceEmail(customerTransactionAlertRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsSendInvoiceEmail");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final CustomerTransactionAlertRequest customerTransactionAlertRequest = new CustomerTransactionAlertRequest(); // CustomerTransactionAlertRequest | 

try {
    final result = await api_instance.customerStatementsSendInvoiceEmail(customerTransactionAlertRequest);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->customerStatementsSendInvoiceEmail: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        CustomerTransactionAlertRequest customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; // CustomerTransactionAlertRequest | 

        try {
            ActionResults result = apiInstance.customerStatementsSendInvoiceEmail(customerTransactionAlertRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsSendInvoiceEmail");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
CustomerTransactionAlertRequest *customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; //  (optional)

// CustomerStatements_SendInvoiceEmail
[apiInstance customerStatementsSendInvoiceEmailWith:customerTransactionAlertRequest
              completionHandler: ^(ActionResults output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiCustomerStatements = require('as_server_api_customer_statements');

// Create an instance of the API class
var api = new AsServerApiCustomerStatements.DefaultApi()
var opts = {
  'customerTransactionAlertRequest': {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"} // {CustomerTransactionAlertRequest} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.customerStatementsSendInvoiceEmail(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class customerStatementsSendInvoiceEmailExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var customerTransactionAlertRequest = new CustomerTransactionAlertRequest(); // CustomerTransactionAlertRequest |  (optional) 

            try {
                // CustomerStatements_SendInvoiceEmail
                ActionResults result = apiInstance.customerStatementsSendInvoiceEmail(customerTransactionAlertRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.customerStatementsSendInvoiceEmail: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; // CustomerTransactionAlertRequest | 

try {
    $result = $api_instance->customerStatementsSendInvoiceEmail($customerTransactionAlertRequest);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->customerStatementsSendInvoiceEmail: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $customerTransactionAlertRequest = WWW::OPenAPIClient::Object::CustomerTransactionAlertRequest->new(); # CustomerTransactionAlertRequest | 

eval {
    my $result = $api_instance->customerStatementsSendInvoiceEmail(customerTransactionAlertRequest => $customerTransactionAlertRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->customerStatementsSendInvoiceEmail: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"} # CustomerTransactionAlertRequest |  (optional)

try:
    # CustomerStatements_SendInvoiceEmail
    api_response = api_instance.customer_statements_send_invoice_email(customerTransactionAlertRequest=customerTransactionAlertRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->customerStatementsSendInvoiceEmail: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; // CustomerTransactionAlertRequest

    let mut context = DefaultApi::Context::default();
    let result = client.customerStatementsSendInvoiceEmail(customerTransactionAlertRequest, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
customerTransactionAlertRequest

Responses


customerStatementsSendPaymentEmail

CustomerStatements_SendPaymentEmail


/CustomerStatements/payment/alert

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 -H "Content-Type: application/json,text/json,application/xml,text/xml,application/x-www-form-urlencoded" \
 "https://api.dev.spenda.co/api/CustomerStatements/payment/alert" \
 -d '{
  "Cc" : "Cc",
  "BccList" : [ {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  }, {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  } ],
  "TransactionGuid" : "00000000-0000-0000-0000-000000000000",
  "Bcc" : "Bcc",
  "CcList" : [ {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  }, {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  } ],
  "To" : "To",
  "TransID" : 0,
  "ToList" : [ {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  }, {
    "BusinessContactID" : 6,
    "ContactPhone" : "ContactPhone",
    "ContactCustomerName" : "ContactCustomerName",
    "ContactEmailAddress" : "ContactEmailAddress",
    "ContactFirstName" : "ContactFirstName",
    "ContactLastName" : "ContactLastName"
  } ]
}' \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '<CustomerTransactionAlertRequest>
  <TransID>123</TransID>
  <TransactionGuid>00000000-0000-0000-0000-000000000000</TransactionGuid>
  <null>
    <BusinessContactID>123</BusinessContactID>
    <ContactFirstName>aeiou</ContactFirstName>
    <ContactLastName>aeiou</ContactLastName>
    <ContactEmailAddress>aeiou</ContactEmailAddress>
    <ContactPhone>aeiou</ContactPhone>
    <ContactCustomerName>aeiou</ContactCustomerName>
  </null>
  <To>aeiou</To>
  <null>
    <BusinessContactID>123</BusinessContactID>
    <ContactFirstName>aeiou</ContactFirstName>
    <ContactLastName>aeiou</ContactLastName>
    <ContactEmailAddress>aeiou</ContactEmailAddress>
    <ContactPhone>aeiou</ContactPhone>
    <ContactCustomerName>aeiou</ContactCustomerName>
  </null>
  <Cc>aeiou</Cc>
  <null>
    <BusinessContactID>123</BusinessContactID>
    <ContactFirstName>aeiou</ContactFirstName>
    <ContactLastName>aeiou</ContactLastName>
    <ContactEmailAddress>aeiou</ContactEmailAddress>
    <ContactPhone>aeiou</ContactPhone>
    <ContactCustomerName>aeiou</ContactCustomerName>
  </null>
  <Bcc>aeiou</Bcc>
</CustomerTransactionAlertRequest>' \
 -d 'Custom MIME type example not yet supported: text/xml' \
 -d 'Custom MIME type example not yet supported: application/x-www-form-urlencoded'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        CustomerTransactionAlertRequest customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; // CustomerTransactionAlertRequest | 

        try {
            ActionResults result = apiInstance.customerStatementsSendPaymentEmail(customerTransactionAlertRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsSendPaymentEmail");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final CustomerTransactionAlertRequest customerTransactionAlertRequest = new CustomerTransactionAlertRequest(); // CustomerTransactionAlertRequest | 

try {
    final result = await api_instance.customerStatementsSendPaymentEmail(customerTransactionAlertRequest);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->customerStatementsSendPaymentEmail: $e\n');
}

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        CustomerTransactionAlertRequest customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; // CustomerTransactionAlertRequest | 

        try {
            ActionResults result = apiInstance.customerStatementsSendPaymentEmail(customerTransactionAlertRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#customerStatementsSendPaymentEmail");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
CustomerTransactionAlertRequest *customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; //  (optional)

// CustomerStatements_SendPaymentEmail
[apiInstance customerStatementsSendPaymentEmailWith:customerTransactionAlertRequest
              completionHandler: ^(ActionResults output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiCustomerStatements = require('as_server_api_customer_statements');

// Create an instance of the API class
var api = new AsServerApiCustomerStatements.DefaultApi()
var opts = {
  'customerTransactionAlertRequest': {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"} // {CustomerTransactionAlertRequest} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.customerStatementsSendPaymentEmail(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class customerStatementsSendPaymentEmailExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var customerTransactionAlertRequest = new CustomerTransactionAlertRequest(); // CustomerTransactionAlertRequest |  (optional) 

            try {
                // CustomerStatements_SendPaymentEmail
                ActionResults result = apiInstance.customerStatementsSendPaymentEmail(customerTransactionAlertRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.customerStatementsSendPaymentEmail: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; // CustomerTransactionAlertRequest | 

try {
    $result = $api_instance->customerStatementsSendPaymentEmail($customerTransactionAlertRequest);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->customerStatementsSendPaymentEmail: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $customerTransactionAlertRequest = WWW::OPenAPIClient::Object::CustomerTransactionAlertRequest->new(); # CustomerTransactionAlertRequest | 

eval {
    my $result = $api_instance->customerStatementsSendPaymentEmail(customerTransactionAlertRequest => $customerTransactionAlertRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->customerStatementsSendPaymentEmail: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"} # CustomerTransactionAlertRequest |  (optional)

try:
    # CustomerStatements_SendPaymentEmail
    api_response = api_instance.customer_statements_send_payment_email(customerTransactionAlertRequest=customerTransactionAlertRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->customerStatementsSendPaymentEmail: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let customerTransactionAlertRequest = {"TransID":0,"TransactionGuid":"00000000-0000-0000-0000-000000000000","ToList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"To":"string","CcList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Cc":"string","BccList":[{"BusinessContactID":0,"ContactFirstName":"string","ContactLastName":"string","ContactEmailAddress":"string","ContactPhone":"string","ContactCustomerName":"string"}],"Bcc":"string"}; // CustomerTransactionAlertRequest

    let mut context = DefaultApi::Context::default();
    let result = client.customerStatementsSendPaymentEmail(customerTransactionAlertRequest, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Body parameters
Name Description
customerTransactionAlertRequest

Responses