AS Server - API - Registration

Default

registrationConfirmEmailAddress

Registration_ConfirmEmailAddress


/Registration/ConfirmEmailAddress

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/Registration/ConfirmEmailAddress" \
 -d '{
  "WebsiteID" : 6,
  "TenantID" : 0,
  "UserID" : 1,
  "Code" : "Code",
  "StatementInvitationId" : "StatementInvitationId"
}' \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '<EmailAddressConfirmationRequest>
  <Code>aeiou</Code>
  <StatementInvitationId>aeiou</StatementInvitationId>
  <TenantID>123</TenantID>
  <WebsiteID>123</WebsiteID>
  <UserID>123</UserID>
</EmailAddressConfirmationRequest>' \
 -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();
        EmailAddressConfirmationRequest emailAddressConfirmationRequest = {"Code":"string","StatementInvitationId":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // EmailAddressConfirmationRequest | 

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

final api_instance = DefaultApi();

final EmailAddressConfirmationRequest emailAddressConfirmationRequest = new EmailAddressConfirmationRequest(); // EmailAddressConfirmationRequest | 

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

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        EmailAddressConfirmationRequest emailAddressConfirmationRequest = {"Code":"string","StatementInvitationId":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // EmailAddressConfirmationRequest | 

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


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
EmailAddressConfirmationRequest *emailAddressConfirmationRequest = {"Code":"string","StatementInvitationId":"string","TenantID":0,"WebsiteID":0,"UserID":0}; //  (optional)

// Registration_ConfirmEmailAddress
[apiInstance registrationConfirmEmailAddressWith:emailAddressConfirmationRequest
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiRegistration = require('as_server_api_registration');

// Create an instance of the API class
var api = new AsServerApiRegistration.DefaultApi()
var opts = {
  'emailAddressConfirmationRequest': {"Code":"string","StatementInvitationId":"string","TenantID":0,"WebsiteID":0,"UserID":0} // {EmailAddressConfirmationRequest} 
};

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

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

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

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

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$emailAddressConfirmationRequest = {"Code":"string","StatementInvitationId":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // EmailAddressConfirmationRequest | 

try {
    $result = $api_instance->registrationConfirmEmailAddress($emailAddressConfirmationRequest);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->registrationConfirmEmailAddress: ', $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 $emailAddressConfirmationRequest = WWW::OPenAPIClient::Object::EmailAddressConfirmationRequest->new(); # EmailAddressConfirmationRequest | 

eval {
    my $result = $api_instance->registrationConfirmEmailAddress(emailAddressConfirmationRequest => $emailAddressConfirmationRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->registrationConfirmEmailAddress: $@\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()
emailAddressConfirmationRequest = {"Code":"string","StatementInvitationId":"string","TenantID":0,"WebsiteID":0,"UserID":0} # EmailAddressConfirmationRequest |  (optional)

try:
    # Registration_ConfirmEmailAddress
    api_response = api_instance.registration_confirm_email_address(emailAddressConfirmationRequest=emailAddressConfirmationRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->registrationConfirmEmailAddress: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let emailAddressConfirmationRequest = {"Code":"string","StatementInvitationId":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // EmailAddressConfirmationRequest

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

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

Scopes

Parameters

Body parameters
Name Description
emailAddressConfirmationRequest

Responses


registrationFindInvite

Registration_FindInvite


/Registration/FindInvite

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/Registration/FindInvite" \
 -d '{
  "WebsiteID" : 6,
  "TenantID" : 0,
  "UserID" : 1,
  "Token" : "Token"
}' \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '<FindByTokenRequest>
  <Token>aeiou</Token>
  <TenantID>123</TenantID>
  <WebsiteID>123</WebsiteID>
  <UserID>123</UserID>
</FindByTokenRequest>' \
 -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();
        FindByTokenRequest findByTokenRequest = {"Token":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // FindByTokenRequest | 

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

final api_instance = DefaultApi();

final FindByTokenRequest findByTokenRequest = new FindByTokenRequest(); // FindByTokenRequest | 

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

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        FindByTokenRequest findByTokenRequest = {"Token":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // FindByTokenRequest | 

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


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
FindByTokenRequest *findByTokenRequest = {"Token":"string","TenantID":0,"WebsiteID":0,"UserID":0}; //  (optional)

// Registration_FindInvite
[apiInstance registrationFindInviteWith:findByTokenRequest
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiRegistration = require('as_server_api_registration');

// Create an instance of the API class
var api = new AsServerApiRegistration.DefaultApi()
var opts = {
  'findByTokenRequest': {"Token":"string","TenantID":0,"WebsiteID":0,"UserID":0} // {FindByTokenRequest} 
};

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

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

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

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

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$findByTokenRequest = {"Token":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // FindByTokenRequest | 

try {
    $result = $api_instance->registrationFindInvite($findByTokenRequest);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->registrationFindInvite: ', $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 $findByTokenRequest = WWW::OPenAPIClient::Object::FindByTokenRequest->new(); # FindByTokenRequest | 

eval {
    my $result = $api_instance->registrationFindInvite(findByTokenRequest => $findByTokenRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->registrationFindInvite: $@\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()
findByTokenRequest = {"Token":"string","TenantID":0,"WebsiteID":0,"UserID":0} # FindByTokenRequest |  (optional)

try:
    # Registration_FindInvite
    api_response = api_instance.registration_find_invite(findByTokenRequest=findByTokenRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->registrationFindInvite: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let findByTokenRequest = {"Token":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // FindByTokenRequest

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

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

Scopes

Parameters

Body parameters
Name Description
findByTokenRequest

Responses


registrationGet

Registration_Get


/Registration/Get

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/Registration/Get" \
 -d '{
  "WebsiteID" : 6,
  "TenantID" : 0,
  "UserName" : "UserName",
  "DomainUrl" : "DomainUrl",
  "InviteCode" : "InviteCode",
  "UserID" : 1,
  "EmailAddress" : "EmailAddress"
}' \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '<RegistrationRequest>
  <InviteCode>aeiou</InviteCode>
  <UserName>aeiou</UserName>
  <EmailAddress>aeiou</EmailAddress>
  <DomainUrl>aeiou</DomainUrl>
  <TenantID>123</TenantID>
  <WebsiteID>123</WebsiteID>
  <UserID>123</UserID>
</RegistrationRequest>' \
 -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();
        RegistrationRequest registrationRequest = {"InviteCode":"string","UserName":"string","EmailAddress":"string","DomainUrl":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // RegistrationRequest | 

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

final api_instance = DefaultApi();

final RegistrationRequest registrationRequest = new RegistrationRequest(); // RegistrationRequest | 

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

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        RegistrationRequest registrationRequest = {"InviteCode":"string","UserName":"string","EmailAddress":"string","DomainUrl":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // RegistrationRequest | 

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


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
RegistrationRequest *registrationRequest = {"InviteCode":"string","UserName":"string","EmailAddress":"string","DomainUrl":"string","TenantID":0,"WebsiteID":0,"UserID":0}; //  (optional)

// Registration_Get
[apiInstance registrationGetWith:registrationRequest
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiRegistration = require('as_server_api_registration');

// Create an instance of the API class
var api = new AsServerApiRegistration.DefaultApi()
var opts = {
  'registrationRequest': {"InviteCode":"string","UserName":"string","EmailAddress":"string","DomainUrl":"string","TenantID":0,"WebsiteID":0,"UserID":0} // {RegistrationRequest} 
};

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

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

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

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

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$registrationRequest = {"InviteCode":"string","UserName":"string","EmailAddress":"string","DomainUrl":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // RegistrationRequest | 

try {
    $result = $api_instance->registrationGet($registrationRequest);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->registrationGet: ', $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 $registrationRequest = WWW::OPenAPIClient::Object::RegistrationRequest->new(); # RegistrationRequest | 

eval {
    my $result = $api_instance->registrationGet(registrationRequest => $registrationRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->registrationGet: $@\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()
registrationRequest = {"InviteCode":"string","UserName":"string","EmailAddress":"string","DomainUrl":"string","TenantID":0,"WebsiteID":0,"UserID":0} # RegistrationRequest |  (optional)

try:
    # Registration_Get
    api_response = api_instance.registration_get(registrationRequest=registrationRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->registrationGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let registrationRequest = {"InviteCode":"string","UserName":"string","EmailAddress":"string","DomainUrl":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // RegistrationRequest

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

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

Scopes

Parameters

Body parameters
Name Description
registrationRequest

Responses


registrationGetAccount

Registration_GetAccount


/Registration/GetAccount

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/Registration/GetAccount" \
 -d '{
  "WebsiteID" : 5,
  "TenantID" : 1,
  "DomainUrl" : "DomainUrl",
  "CustomerTenantID" : 6,
  "UserID" : 5,
  "CustomerID" : 0,
  "EmailAddress" : "EmailAddress"
}' \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '<AccountRequest>
  <CustomerID>123</CustomerID>
  <CustomerTenantID>123</CustomerTenantID>
  <EmailAddress>aeiou</EmailAddress>
  <DomainUrl>aeiou</DomainUrl>
  <TenantID>123</TenantID>
  <WebsiteID>123</WebsiteID>
  <UserID>123</UserID>
</AccountRequest>' \
 -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();
        AccountRequest accountRequest = {"CustomerID":0,"CustomerTenantID":0,"EmailAddress":"string","DomainUrl":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // AccountRequest | 

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

final api_instance = DefaultApi();

final AccountRequest accountRequest = new AccountRequest(); // AccountRequest | 

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

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        AccountRequest accountRequest = {"CustomerID":0,"CustomerTenantID":0,"EmailAddress":"string","DomainUrl":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // AccountRequest | 

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


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
AccountRequest *accountRequest = {"CustomerID":0,"CustomerTenantID":0,"EmailAddress":"string","DomainUrl":"string","TenantID":0,"WebsiteID":0,"UserID":0}; //  (optional)

// Registration_GetAccount
[apiInstance registrationGetAccountWith:accountRequest
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiRegistration = require('as_server_api_registration');

// Create an instance of the API class
var api = new AsServerApiRegistration.DefaultApi()
var opts = {
  'accountRequest': {"CustomerID":0,"CustomerTenantID":0,"EmailAddress":"string","DomainUrl":"string","TenantID":0,"WebsiteID":0,"UserID":0} // {AccountRequest} 
};

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

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

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

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

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$accountRequest = {"CustomerID":0,"CustomerTenantID":0,"EmailAddress":"string","DomainUrl":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // AccountRequest | 

try {
    $result = $api_instance->registrationGetAccount($accountRequest);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->registrationGetAccount: ', $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 $accountRequest = WWW::OPenAPIClient::Object::AccountRequest->new(); # AccountRequest | 

eval {
    my $result = $api_instance->registrationGetAccount(accountRequest => $accountRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->registrationGetAccount: $@\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()
accountRequest = {"CustomerID":0,"CustomerTenantID":0,"EmailAddress":"string","DomainUrl":"string","TenantID":0,"WebsiteID":0,"UserID":0} # AccountRequest |  (optional)

try:
    # Registration_GetAccount
    api_response = api_instance.registration_get_account(accountRequest=accountRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->registrationGetAccount: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let accountRequest = {"CustomerID":0,"CustomerTenantID":0,"EmailAddress":"string","DomainUrl":"string","TenantID":0,"WebsiteID":0,"UserID":0}; // AccountRequest

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

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

Scopes

Parameters

Body parameters
Name Description
accountRequest

Responses


registrationGetTimeZones

Registration_GetTimeZones


/Registration/GetTimeZones

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/Registration/GetTimeZones"
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();

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

final api_instance = DefaultApi();


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

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

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


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// Registration_GetTimeZones
[apiInstance registrationGetTimeZonesWithCompletionHandler: 
              ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiRegistration = require('as_server_api_registration');

// Create an instance of the API class
var api = new AsServerApiRegistration.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.registrationGetTimeZones(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $result = $api_instance->registrationGetTimeZones();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->registrationGetTimeZones: ', $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();

eval {
    my $result = $api_instance->registrationGetTimeZones();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->registrationGetTimeZones: $@\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()

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

pub fn main() {

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

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

Scopes

Parameters

Responses


registrationSave

Registration_Save


/Registration/Save

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/Registration/Save" \
 -d '{
  "WebsiteID" : 0,
  "UserName" : "UserName",
  "Customer" : {
    "AvgPayDays" : 9,
    "CountOfLinkedCustomers" : 7,
    "IsApprovedForWeb" : true,
    "IsApprovedForPOS" : true,
    "AccountCustomerClassName" : "AccountCustomerClassName",
    "CustomerID" : 7,
    "DefaultLocation" : {
      "IsActive" : true,
      "TimeZoneName" : "TimeZoneName",
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "EmailAddress" : "EmailAddress",
      "Name" : "Name",
      "LocationName" : "LocationName",
      "GUIDstring" : "GUIDstring",
      "Addresses" : [ {
        "FullAddress" : "FullAddress",
        "IsDefaultDeliverTo" : true,
        "IsActive" : true,
        "LocationID" : 3,
        "Latitude" : 5.944895607614016,
        "GUIDstring" : "GUIDstring",
        "IsPostalAddress" : true,
        "AddressDescription" : "AddressDescription",
        "ID" : 6,
        "Notes" : "Notes",
        "IsDeliverTo" : true,
        "IsSelectedBilling" : true,
        "IsSelectedDelivery" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "City" : "City",
        "Longitude" : 6.704019297950036,
        "StreetAddress" : "StreetAddress",
        "IsMailTo" : true,
        "IsServiceTo" : true,
        "State" : "State",
        "IsDefaultServiceTo" : true,
        "IsOfficeOrShop" : true,
        "Country" : "Country",
        "IsSystem" : true,
        "AddressType" : 3,
        "PostCode" : "PostCode",
        "IsDefaultBilling" : true
      }, {
        "FullAddress" : "FullAddress",
        "IsDefaultDeliverTo" : true,
        "IsActive" : true,
        "LocationID" : 3,
        "Latitude" : 5.944895607614016,
        "GUIDstring" : "GUIDstring",
        "IsPostalAddress" : true,
        "AddressDescription" : "AddressDescription",
        "ID" : 6,
        "Notes" : "Notes",
        "IsDeliverTo" : true,
        "IsSelectedBilling" : true,
        "IsSelectedDelivery" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "City" : "City",
        "Longitude" : 6.704019297950036,
        "StreetAddress" : "StreetAddress",
        "IsMailTo" : true,
        "IsServiceTo" : true,
        "State" : "State",
        "IsDefaultServiceTo" : true,
        "IsOfficeOrShop" : true,
        "Country" : "Country",
        "IsSystem" : true,
        "AddressType" : 3,
        "PostCode" : "PostCode",
        "IsDefaultBilling" : true
      } ],
      "UtcOffset" : 6,
      "IsVisibleToPublic" : true,
      "Contacts" : [ {
        "BusinessName" : "BusinessName",
        "FirstName" : "FirstName",
        "IsActive" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "Title" : "Title",
        "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
        "Birthday" : "2000-01-23T04:56:07.000+00:00",
        "Gender" : "Gender",
        "PositionOrOccupation" : "PositionOrOccupation",
        "IsIncludeInEmails" : true,
        "EmailAddress" : "EmailAddress",
        "ContactRole" : "ContactRole",
        "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
        "BusinessContactID" : 7,
        "GUIDstring" : "GUIDstring",
        "PhoneMobile" : "PhoneMobile",
        "IsPrimaryContact" : true,
        "Phone1" : "Phone1",
        "IsSystem" : true,
        "ID" : 4,
        "LastName" : "LastName",
        "BusinessID" : 1
      }, {
        "BusinessName" : "BusinessName",
        "FirstName" : "FirstName",
        "IsActive" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "Title" : "Title",
        "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
        "Birthday" : "2000-01-23T04:56:07.000+00:00",
        "Gender" : "Gender",
        "PositionOrOccupation" : "PositionOrOccupation",
        "IsIncludeInEmails" : true,
        "EmailAddress" : "EmailAddress",
        "ContactRole" : "ContactRole",
        "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
        "BusinessContactID" : 7,
        "GUIDstring" : "GUIDstring",
        "PhoneMobile" : "PhoneMobile",
        "IsPrimaryContact" : true,
        "Phone1" : "Phone1",
        "IsSystem" : true,
        "ID" : 4,
        "LastName" : "LastName",
        "BusinessID" : 1
      } ],
      "Phone" : "Phone",
      "IsSystem" : true,
      "ID" : 2,
      "Fax" : "Fax",
      "IsDefaultLocation" : true
    },
    "IsPrimaryContact" : true,
    "SearchFieldMatches" : [ "SearchFieldMatches", "SearchFieldMatches" ],
    "AnnualTurnOver" : 6,
    "LinkedTenantGlobalID" : "00000000-0000-0000-0000-000000000000",
    "SyncLogs" : [ {
      "Status" : "Status",
      "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
      "AdaptorID" : 4,
      "LastImportDateTime_offset" : 2,
      "LastExportDateTime_offset" : 9,
      "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" : 0,
      "ID" : 7,
      "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
    }, {
      "Status" : "Status",
      "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
      "AdaptorID" : 4,
      "LastImportDateTime_offset" : 2,
      "LastExportDateTime_offset" : 9,
      "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" : 0,
      "ID" : 7,
      "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
    } ],
    "PrimaryContactEmailAddress" : "PrimaryContactEmailAddress",
    "Currency" : "Currency",
    "LastInvoice" : {
      "Status" : "Status",
      "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
      "DatTypeString" : "DatTypeString",
      "ShortDatTypeString" : "ShortDatTypeString",
      "Description" : "Description",
      "Issues" : "Issues",
      "RefNumber" : "RefNumber",
      "AppliedAmount" : 8.782449469456207,
      "DatTypeID" : 5,
      "TotalInc" : 3.0269458094096646,
      "LineCount" : 8,
      "TransSubType" : "TransSubType",
      "QuantityCount" : 7.273019311111276,
      "GUIDstring" : "GUIDstring",
      "TotalEx" : 2.4669941706755685,
      "RecipientName" : "RecipientName",
      "ID" : 1
    },
    "CreditStopSetting" : 1,
    "ID" : 3,
    "IsReadOnly" : true,
    "Status" : "Status",
    "SupplierRefNumber" : "SupplierRefNumber",
    "BillingAddressString" : "BillingAddressString",
    "IsUpdateLinkedTenant" : true,
    "PointsBalance" : 1.284659006116532,
    "AccountLastUpdatedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "PriceBandInfo" : {
      "DiscountPercentage" : 5.637376656633329,
      "Price" : 2.3021358869347655,
      "Name" : "Name"
    },
    "Locations" : [ {
      "IsActive" : true,
      "TimeZoneName" : "TimeZoneName",
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "EmailAddress" : "EmailAddress",
      "Name" : "Name",
      "LocationName" : "LocationName",
      "GUIDstring" : "GUIDstring",
      "Addresses" : [ {
        "FullAddress" : "FullAddress",
        "IsDefaultDeliverTo" : true,
        "IsActive" : true,
        "LocationID" : 3,
        "Latitude" : 5.944895607614016,
        "GUIDstring" : "GUIDstring",
        "IsPostalAddress" : true,
        "AddressDescription" : "AddressDescription",
        "ID" : 6,
        "Notes" : "Notes",
        "IsDeliverTo" : true,
        "IsSelectedBilling" : true,
        "IsSelectedDelivery" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "City" : "City",
        "Longitude" : 6.704019297950036,
        "StreetAddress" : "StreetAddress",
        "IsMailTo" : true,
        "IsServiceTo" : true,
        "State" : "State",
        "IsDefaultServiceTo" : true,
        "IsOfficeOrShop" : true,
        "Country" : "Country",
        "IsSystem" : true,
        "AddressType" : 3,
        "PostCode" : "PostCode",
        "IsDefaultBilling" : true
      }, {
        "FullAddress" : "FullAddress",
        "IsDefaultDeliverTo" : true,
        "IsActive" : true,
        "LocationID" : 3,
        "Latitude" : 5.944895607614016,
        "GUIDstring" : "GUIDstring",
        "IsPostalAddress" : true,
        "AddressDescription" : "AddressDescription",
        "ID" : 6,
        "Notes" : "Notes",
        "IsDeliverTo" : true,
        "IsSelectedBilling" : true,
        "IsSelectedDelivery" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "City" : "City",
        "Longitude" : 6.704019297950036,
        "StreetAddress" : "StreetAddress",
        "IsMailTo" : true,
        "IsServiceTo" : true,
        "State" : "State",
        "IsDefaultServiceTo" : true,
        "IsOfficeOrShop" : true,
        "Country" : "Country",
        "IsSystem" : true,
        "AddressType" : 3,
        "PostCode" : "PostCode",
        "IsDefaultBilling" : true
      } ],
      "UtcOffset" : 6,
      "IsVisibleToPublic" : true,
      "Contacts" : [ {
        "BusinessName" : "BusinessName",
        "FirstName" : "FirstName",
        "IsActive" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "Title" : "Title",
        "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
        "Birthday" : "2000-01-23T04:56:07.000+00:00",
        "Gender" : "Gender",
        "PositionOrOccupation" : "PositionOrOccupation",
        "IsIncludeInEmails" : true,
        "EmailAddress" : "EmailAddress",
        "ContactRole" : "ContactRole",
        "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
        "BusinessContactID" : 7,
        "GUIDstring" : "GUIDstring",
        "PhoneMobile" : "PhoneMobile",
        "IsPrimaryContact" : true,
        "Phone1" : "Phone1",
        "IsSystem" : true,
        "ID" : 4,
        "LastName" : "LastName",
        "BusinessID" : 1
      }, {
        "BusinessName" : "BusinessName",
        "FirstName" : "FirstName",
        "IsActive" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "Title" : "Title",
        "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
        "Birthday" : "2000-01-23T04:56:07.000+00:00",
        "Gender" : "Gender",
        "PositionOrOccupation" : "PositionOrOccupation",
        "IsIncludeInEmails" : true,
        "EmailAddress" : "EmailAddress",
        "ContactRole" : "ContactRole",
        "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
        "BusinessContactID" : 7,
        "GUIDstring" : "GUIDstring",
        "PhoneMobile" : "PhoneMobile",
        "IsPrimaryContact" : true,
        "Phone1" : "Phone1",
        "IsSystem" : true,
        "ID" : 4,
        "LastName" : "LastName",
        "BusinessID" : 1
      } ],
      "Phone" : "Phone",
      "IsSystem" : true,
      "ID" : 2,
      "Fax" : "Fax",
      "IsDefaultLocation" : true
    }, {
      "IsActive" : true,
      "TimeZoneName" : "TimeZoneName",
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "EmailAddress" : "EmailAddress",
      "Name" : "Name",
      "LocationName" : "LocationName",
      "GUIDstring" : "GUIDstring",
      "Addresses" : [ {
        "FullAddress" : "FullAddress",
        "IsDefaultDeliverTo" : true,
        "IsActive" : true,
        "LocationID" : 3,
        "Latitude" : 5.944895607614016,
        "GUIDstring" : "GUIDstring",
        "IsPostalAddress" : true,
        "AddressDescription" : "AddressDescription",
        "ID" : 6,
        "Notes" : "Notes",
        "IsDeliverTo" : true,
        "IsSelectedBilling" : true,
        "IsSelectedDelivery" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "City" : "City",
        "Longitude" : 6.704019297950036,
        "StreetAddress" : "StreetAddress",
        "IsMailTo" : true,
        "IsServiceTo" : true,
        "State" : "State",
        "IsDefaultServiceTo" : true,
        "IsOfficeOrShop" : true,
        "Country" : "Country",
        "IsSystem" : true,
        "AddressType" : 3,
        "PostCode" : "PostCode",
        "IsDefaultBilling" : true
      }, {
        "FullAddress" : "FullAddress",
        "IsDefaultDeliverTo" : true,
        "IsActive" : true,
        "LocationID" : 3,
        "Latitude" : 5.944895607614016,
        "GUIDstring" : "GUIDstring",
        "IsPostalAddress" : true,
        "AddressDescription" : "AddressDescription",
        "ID" : 6,
        "Notes" : "Notes",
        "IsDeliverTo" : true,
        "IsSelectedBilling" : true,
        "IsSelectedDelivery" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "City" : "City",
        "Longitude" : 6.704019297950036,
        "StreetAddress" : "StreetAddress",
        "IsMailTo" : true,
        "IsServiceTo" : true,
        "State" : "State",
        "IsDefaultServiceTo" : true,
        "IsOfficeOrShop" : true,
        "Country" : "Country",
        "IsSystem" : true,
        "AddressType" : 3,
        "PostCode" : "PostCode",
        "IsDefaultBilling" : true
      } ],
      "UtcOffset" : 6,
      "IsVisibleToPublic" : true,
      "Contacts" : [ {
        "BusinessName" : "BusinessName",
        "FirstName" : "FirstName",
        "IsActive" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "Title" : "Title",
        "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
        "Birthday" : "2000-01-23T04:56:07.000+00:00",
        "Gender" : "Gender",
        "PositionOrOccupation" : "PositionOrOccupation",
        "IsIncludeInEmails" : true,
        "EmailAddress" : "EmailAddress",
        "ContactRole" : "ContactRole",
        "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
        "BusinessContactID" : 7,
        "GUIDstring" : "GUIDstring",
        "PhoneMobile" : "PhoneMobile",
        "IsPrimaryContact" : true,
        "Phone1" : "Phone1",
        "IsSystem" : true,
        "ID" : 4,
        "LastName" : "LastName",
        "BusinessID" : 1
      }, {
        "BusinessName" : "BusinessName",
        "FirstName" : "FirstName",
        "IsActive" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "Title" : "Title",
        "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
        "Birthday" : "2000-01-23T04:56:07.000+00:00",
        "Gender" : "Gender",
        "PositionOrOccupation" : "PositionOrOccupation",
        "IsIncludeInEmails" : true,
        "EmailAddress" : "EmailAddress",
        "ContactRole" : "ContactRole",
        "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
        "BusinessContactID" : 7,
        "GUIDstring" : "GUIDstring",
        "PhoneMobile" : "PhoneMobile",
        "IsPrimaryContact" : true,
        "Phone1" : "Phone1",
        "IsSystem" : true,
        "ID" : 4,
        "LastName" : "LastName",
        "BusinessID" : 1
      } ],
      "Phone" : "Phone",
      "IsSystem" : true,
      "ID" : 2,
      "Fax" : "Fax",
      "IsDefaultLocation" : true
    } ],
    "AssetCount" : 6,
    "BusinessGUIDstring" : "BusinessGUIDstring",
    "BSID" : "BSID",
    "SecondaryName" : "SecondaryName",
    "AccountCustomerName" : "AccountCustomerName",
    "BillToCustomerCreditLimit" : 7.061401241503109,
    "CreditLimitString" : "CreditLimitString",
    "IsSystem" : true,
    "PrimaryContactLastName" : "PrimaryContactLastName",
    "AccountCustomerRefNumber" : "AccountCustomerRefNumber",
    "TerritoryName" : "TerritoryName",
    "ModifiesDateTime_offset" : 6,
    "AvailableCreditString" : "AvailableCreditString",
    "ClassPostingBehaviour" : "ClassPostingBehaviour",
    "AccountOpenDate" : "2000-01-23T04:56:07.000+00:00",
    "MasterBuyingGroupCustomerID" : 6,
    "LinkedTenantGlobalIDstring" : "LinkedTenantGlobalIDstring",
    "ABN" : "ABN",
    "IsLinked" : true,
    "AccountCustomerClassID" : 6,
    "CustomerClass" : {
      "HasBeenSaved" : true,
      "CountOfCustomers" : 3,
      "IsAccountCustomerBatched" : true,
      "Description" : "Description",
      "IsApprovedForWeb" : true,
      "IsApprovedForPOS" : true,
      "IsActive" : true,
      "BatchInvoiceFrequencyDays" : 6,
      "BatchInvoicePrefix" : "BatchInvoicePrefix",
      "Name" : "Name",
      "GUIDstring" : "GUIDstring",
      "IsAutoApprovedforClaimRequests" : true,
      "IsAutoSendPayByLinkInvoice" : true,
      "TradingTermDays" : 8,
      "DefaultPricingBandID" : 3,
      "ID" : 7,
      "PostingBehaviour" : "PostingBehaviour",
      "IsCanSetFundingRate" : true,
      "CreditLimit" : 4.652396432933246,
      "LoyaltyDescription" : "LoyaltyDescription",
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "GenericAccountCustomerID" : 0,
      "TradingTermID" : 7,
      "IsLoyaltyEligible" : true,
      "IsBatchInvoice" : true,
      "GenericAccountCustomerName" : "GenericAccountCustomerName",
      "AccountCustomerRefNumberPrefix" : "AccountCustomerRefNumberPrefix",
      "IsExemptFromMerchantSurcharge" : true,
      "FundingRate" : 0.8851374739011653,
      "IsAutoCreateGenericAccountCustomer" : true,
      "BSID" : "BSID",
      "IsSystem" : true,
      "IsApprovedForService" : true,
      "TradingTermType" : "TradingTermType",
      "PrimaryOperationalCustomer" : {
        "IsIndividual" : true,
        "CompanyName" : "CompanyName",
        "PrimaryContactFullName" : "PrimaryContactFullName",
        "CustomerID" : 4
      }
    },
    "WebSiteURL" : "WebSiteURL",
    "Structure" : "Structure",
    "OverdueInvoicesAmount" : 2.027123023002322,
    "IsEnableAutomaticJobBookingSMSReminder" : true,
    "PhoneFax" : "PhoneFax",
    "NumberOfStaff" : 9,
    "BillToCustomerID" : 6,
    "CreditLimit" : 6.778324963048013,
    "PricingBandName" : "PricingBandName",
    "ClassID" : 0,
    "CustomerIsActive" : true,
    "PrimaryContactMobile" : "PrimaryContactMobile",
    "DeliveryNotes" : "DeliveryNotes",
    "AccountBalanceString" : "AccountBalanceString",
    "Contacts" : [ {
      "BusinessName" : "BusinessName",
      "FirstName" : "FirstName",
      "IsActive" : true,
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "Title" : "Title",
      "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
      "Birthday" : "2000-01-23T04:56:07.000+00:00",
      "Gender" : "Gender",
      "PositionOrOccupation" : "PositionOrOccupation",
      "IsIncludeInEmails" : true,
      "EmailAddress" : "EmailAddress",
      "ContactRole" : "ContactRole",
      "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
      "BusinessContactID" : 7,
      "GUIDstring" : "GUIDstring",
      "PhoneMobile" : "PhoneMobile",
      "IsPrimaryContact" : true,
      "Phone1" : "Phone1",
      "IsSystem" : true,
      "ID" : 4,
      "LastName" : "LastName",
      "BusinessID" : 1
    }, {
      "BusinessName" : "BusinessName",
      "FirstName" : "FirstName",
      "IsActive" : true,
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "Title" : "Title",
      "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
      "Birthday" : "2000-01-23T04:56:07.000+00:00",
      "Gender" : "Gender",
      "PositionOrOccupation" : "PositionOrOccupation",
      "IsIncludeInEmails" : true,
      "EmailAddress" : "EmailAddress",
      "ContactRole" : "ContactRole",
      "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
      "BusinessContactID" : 7,
      "GUIDstring" : "GUIDstring",
      "PhoneMobile" : "PhoneMobile",
      "IsPrimaryContact" : true,
      "Phone1" : "Phone1",
      "IsSystem" : true,
      "ID" : 4,
      "LastName" : "LastName",
      "BusinessID" : 1
    } ],
    "CampaignID" : 1,
    "BankAccounts" : [ {
      "GUIDstring" : "GUIDstring",
      "BSB" : "BSB",
      "StatementText" : "StatementText",
      "IsRemainder" : true,
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "ID" : 3,
      "AccountName" : "AccountName",
      "AccountNumber" : "AccountNumber"
    }, {
      "GUIDstring" : "GUIDstring",
      "BSB" : "BSB",
      "StatementText" : "StatementText",
      "IsRemainder" : true,
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "ID" : 3,
      "AccountName" : "AccountName",
      "AccountNumber" : "AccountNumber"
    } ],
    "SalesNotes" : "SalesNotes",
    "AccountCustomerClassPostingBehaviour" : "AccountCustomerClassPostingBehaviour",
    "SupplierIsActive" : true,
    "Name" : "Name",
    "GUIDstring" : "GUIDstring",
    "AvailableCredit" : 5.962133916683182,
    "CompanyName" : "CompanyName",
    "SupplierID" : 1,
    "TenantID" : 6,
    "Version" : 1.4894159098541704,
    "CreatedWith" : "CreatedWith",
    "Name2" : "Name2",
    "AccountCustomerID" : 5,
    "BillToCustomerStatus" : "BillToCustomerStatus",
    "RefNumber" : "RefNumber",
    "ModifiedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "GUID" : "00000000-0000-0000-0000-000000000000",
    "DateOfFirstSale" : "2000-01-23T04:56:07.000+00:00",
    "IsExemptFromMerchantSurcharge" : true,
    "PricingBandID" : 5,
    "IsAccountCustomer" : true,
    "BillToCustomerAccountBalance" : 9.301444243932576,
    "AccountLastUpdatedDateTime_offset" : 8,
    "IsAutoAddClaimRequests" : true,
    "IsApprovedForService" : true,
    "PrimaryOperationalCustomer" : {
      "IsIndividual" : true,
      "CompanyName" : "CompanyName",
      "PrimaryContactFullName" : "PrimaryContactFullName",
      "CustomerID" : 4
    },
    "CreatedDateTime" : "2000-01-23T04:56:07.000+00:00",
    "BusinessID" : 4,
    "BillToCustomerName" : "BillToCustomerName",
    "IsAccountCustomerBatched" : true,
    "BusinessGUID" : "00000000-0000-0000-0000-000000000000",
    "ShippingAddressString" : "ShippingAddressString",
    "OperationalCustomerIDs" : [ 3, 3 ],
    "CountSalesRequiresBatching" : 7,
    "IsActive" : true,
    "CreditHoldSetting" : 7,
    "HasOpenTransactions" : true,
    "Attachments" : [ {
      "AttachmentType" : "AttachmentType",
      "LineID" : 2,
      "IsActive" : true,
      "ThumbnailURI" : "ThumbnailURI",
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "Title" : "Title",
      "IsImage" : true,
      "URI" : "URI",
      "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
      "Caption" : "Caption",
      "GUIDstring" : "GUIDstring",
      "IsPDF" : true,
      "IsFromParent" : true,
      "ID" : 7,
      "AttachedByUserID" : 3,
      "MessageID" : 0
    }, {
      "AttachmentType" : "AttachmentType",
      "LineID" : 2,
      "IsActive" : true,
      "ThumbnailURI" : "ThumbnailURI",
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "Title" : "Title",
      "IsImage" : true,
      "URI" : "URI",
      "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
      "Caption" : "Caption",
      "GUIDstring" : "GUIDstring",
      "IsPDF" : true,
      "IsFromParent" : true,
      "ID" : 7,
      "AttachedByUserID" : 3,
      "MessageID" : 0
    } ],
    "Phone1" : "Phone1",
    "AccountBalance" : 2.8841621266687802,
    "ClassName" : "ClassName",
    "RecentTransactions" : "{}",
    "LinkedTenantGlobalCode" : "LinkedTenantGlobalCode",
    "PrimaryContactPhone" : "PrimaryContactPhone",
    "TerritoryID" : 9,
    "IsAccountCustomerExemptFromMerchantSurcharge" : true,
    "PrimaryContactFullName" : "PrimaryContactFullName",
    "DefaultLocationName" : "DefaultLocationName",
    "IndustryType" : "IndustryType",
    "IsIndividual" : true,
    "RowNumber" : 1,
    "CreatedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
    "IncorporatedDate" : "2000-01-23T04:56:07.000+00:00",
    "CreatedDateTime_offset" : 3,
    "PrimaryContactFirstName" : "PrimaryContactFirstName"
  },
  "InviteCode" : "InviteCode",
  "DomainBlackList" : [ "DomainBlackList", "DomainBlackList" ],
  "IsSetupComplete" : true,
  "Adaptors" : [ 3, 3 ],
  "IndustryTypes" : [ "IndustryTypes", "IndustryTypes" ],
  "EmailAddress" : "EmailAddress",
  "ProductModuleTypes" : [ 5, 5 ],
  "IsFreePlanAvailable" : true,
  "IsPasswordRequired" : true,
  "TenantID" : 4,
  "MarketPlacePath" : "MarketPlacePath",
  "UserID" : 6,
  "StatementInvitationId" : "StatementInvitationId",
  "Password" : "Password"
}' \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '<RegistrationDetails>
  <null>
    <ClassID>123</ClassID>
    <ClassName>aeiou</ClassName>
    <ClassPostingBehaviour>aeiou</ClassPostingBehaviour>
    <IsApprovedForWeb>true</IsApprovedForWeb>
    <GUID>00000000-0000-0000-0000-000000000000</GUID>
    <AssetCount>123</AssetCount>
    <IsUpdateLinkedTenant>true</IsUpdateLinkedTenant>
    <CampaignID>123</CampaignID>
    <AvailableCredit>3.149</AvailableCredit>
    <CreditLimitString>aeiou</CreditLimitString>
    <AccountBalanceString>aeiou</AccountBalanceString>
    <AvailableCreditString>aeiou</AvailableCreditString>
    <BillToCustomerStatus>aeiou</BillToCustomerStatus>
    <BillToCustomerCreditLimit>3.149</BillToCustomerCreditLimit>
    <BillToCustomerAccountBalance>3.149</BillToCustomerAccountBalance>
    <OperationalCustomerIDs>123</OperationalCustomerIDs>
    <OverdueInvoicesAmount>3.149</OverdueInvoicesAmount>
    <IsAccountCustomerBatched>true</IsAccountCustomerBatched>
    <CreditHoldSetting>123</CreditHoldSetting>
    <CreditStopSetting>123</CreditStopSetting>
    <IsEnableAutomaticJobBookingSMSReminder>true</IsEnableAutomaticJobBookingSMSReminder>
    <RowNumber>123456789</RowNumber>
    <Version>3.149</Version>
    <CompanyName>aeiou</CompanyName>
    <TenantID>123</TenantID>
    <BusinessGUID>00000000-0000-0000-0000-000000000000</BusinessGUID>
    <LinkedTenantGlobalID>00000000-0000-0000-0000-000000000000</LinkedTenantGlobalID>
    <IsReadOnly>true</IsReadOnly>
    <CreatedDateTime>2000-01-23T04:56:07.000Z</CreatedDateTime>
    <HasOpenTransactions>true</HasOpenTransactions>
    <PrimaryContactFullName>aeiou</PrimaryContactFullName>
    <PrimaryContactFirstName>aeiou</PrimaryContactFirstName>
    <PrimaryContactLastName>aeiou</PrimaryContactLastName>
    <PrimaryContactPhone>aeiou</PrimaryContactPhone>
    <PrimaryContactMobile>aeiou</PrimaryContactMobile>
    <PrimaryContactEmailAddress>aeiou</PrimaryContactEmailAddress>
    <DefaultLocationName>aeiou</DefaultLocationName>
    <ShippingAddressString>aeiou</ShippingAddressString>
    <BillingAddressString>aeiou</BillingAddressString>
    <CustomerID>123</CustomerID>
    <SupplierID>123</SupplierID>
    <SupplierRefNumber>aeiou</SupplierRefNumber>
    <IsPrimaryContact>true</IsPrimaryContact>
    <SearchFieldMatches>aeiou</SearchFieldMatches>
    <CustomerIsActive>true</CustomerIsActive>
    <SupplierIsActive>true</SupplierIsActive>
    <IsSystem>true</IsSystem>
    <BusinessID>123</BusinessID>
    <RefNumber>aeiou</RefNumber>
    <IsApprovedForService>true</IsApprovedForService>
    <BusinessGUIDstring>aeiou</BusinessGUIDstring>
    <IsApprovedForPOS>true</IsApprovedForPOS>
    <Name>aeiou</Name>
    <PricingBandID>123</PricingBandID>
    <Name2>aeiou</Name2>
    <PricingBandName>aeiou</PricingBandName>
    <SecondaryName>aeiou</SecondaryName>
    <TerritoryID>123</TerritoryID>
    <ABN>aeiou</ABN>
    <TerritoryName>aeiou</TerritoryName>
    <IsIndividual>true</IsIndividual>
    <SalesNotes>aeiou</SalesNotes>
    <Phone1>aeiou</Phone1>
    <AvgPayDays>123</AvgPayDays>
    <PhoneFax>aeiou</PhoneFax>
    <AccountLastUpdatedDateTime_utc>2000-01-23T04:56:07.000Z</AccountLastUpdatedDateTime_utc>
    <AnnualTurnOver>123</AnnualTurnOver>
    <AccountLastUpdatedDateTime_offset>123</AccountLastUpdatedDateTime_offset>
    <NumberOfStaff>123</NumberOfStaff>
    <ModifiedDateTime_utc>2000-01-23T04:56:07.000Z</ModifiedDateTime_utc>
    <IncorporatedDate>2000-01-23T04:56:07.000Z</IncorporatedDate>
    <ModifiesDateTime_offset>123</ModifiesDateTime_offset>
    <WebSiteURL>aeiou</WebSiteURL>
    <CreatedDateTime_utc>2000-01-23T04:56:07.000Z</CreatedDateTime_utc>
    <IndustryType>aeiou</IndustryType>
    <CreatedDateTime_offset>123</CreatedDateTime_offset>
    <Structure>aeiou</Structure>
    <AccountOpenDate>2000-01-23T04:56:07.000Z</AccountOpenDate>
    <Currency>aeiou</Currency>
    <DateOfFirstSale>2000-01-23T04:56:07.000Z</DateOfFirstSale>
    <Status>aeiou</Status>
    <IsAccountCustomer>true</IsAccountCustomer>
    <IsActive>true</IsActive>
    <MasterBuyingGroupCustomerID>123</MasterBuyingGroupCustomerID>
    <IsLinked>true</IsLinked>
    <PointsBalance>3.149</PointsBalance>
    <AccountBalance>3.149</AccountBalance>
    <IsAutoAddClaimRequests>true</IsAutoAddClaimRequests>
    <CreditLimit>3.149</CreditLimit>
    <BillToCustomerID>123</BillToCustomerID>
    <DeliveryNotes>aeiou</DeliveryNotes>
    <BillToCustomerName>aeiou</BillToCustomerName>
    <LinkedTenantGlobalCode>aeiou</LinkedTenantGlobalCode>
    <AccountCustomerID>123</AccountCustomerID>
    <LinkedTenantGlobalIDstring>aeiou</LinkedTenantGlobalIDstring>
    <AccountCustomerName>aeiou</AccountCustomerName>
    <AccountCustomerClassID>123</AccountCustomerClassID>
    <AccountCustomerClassName>aeiou</AccountCustomerClassName>
    <AccountCustomerClassPostingBehaviour>aeiou</AccountCustomerClassPostingBehaviour>
    <AccountCustomerRefNumber>aeiou</AccountCustomerRefNumber>
    <ID>123</ID>
    <CountOfLinkedCustomers>123</CountOfLinkedCustomers>
    <GUIDstring>aeiou</GUIDstring>
    <BSID>aeiou</BSID>
    <CreatedWith>aeiou</CreatedWith>
    <IsExemptFromMerchantSurcharge>true</IsExemptFromMerchantSurcharge>
    <IsAccountCustomerExemptFromMerchantSurcharge>true</IsAccountCustomerExemptFromMerchantSurcharge>
    <CountSalesRequiresBatching>123</CountSalesRequiresBatching>
  </null>
  <ProductModuleTypes>123</ProductModuleTypes>
  <Adaptors>123</Adaptors>
  <EmailAddress>aeiou</EmailAddress>
  <UserName>aeiou</UserName>
  <Password>aeiou</Password>
  <IsPasswordRequired>true</IsPasswordRequired>
  <IsFreePlanAvailable>true</IsFreePlanAvailable>
  <IndustryTypes>aeiou</IndustryTypes>
  <DomainBlackList>aeiou</DomainBlackList>
  <InviteCode>aeiou</InviteCode>
  <IsSetupComplete>true</IsSetupComplete>
  <MarketPlacePath>aeiou</MarketPlacePath>
  <StatementInvitationId>aeiou</StatementInvitationId>
  <TenantID>123</TenantID>
  <WebsiteID>123</WebsiteID>
  <UserID>123</UserID>
</RegistrationDetails>' \
 -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();
        RegistrationDetails registrationDetails = ; // RegistrationDetails | 

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

final api_instance = DefaultApi();

final RegistrationDetails registrationDetails = new RegistrationDetails(); // RegistrationDetails | 

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

import org.openapitools.client.api.DefaultApi;

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

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


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
RegistrationDetails *registrationDetails = ; //  (optional)

// Registration_Save
[apiInstance registrationSaveWith:registrationDetails
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiRegistration = require('as_server_api_registration');

// Create an instance of the API class
var api = new AsServerApiRegistration.DefaultApi()
var opts = {
  'registrationDetails':  // {RegistrationDetails} 
};

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

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

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

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

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

try {
    $result = $api_instance->registrationSave($registrationDetails);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->registrationSave: ', $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 $registrationDetails = WWW::OPenAPIClient::Object::RegistrationDetails->new(); # RegistrationDetails | 

eval {
    my $result = $api_instance->registrationSave(registrationDetails => $registrationDetails);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->registrationSave: $@\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()
registrationDetails =  # RegistrationDetails |  (optional)

try:
    # Registration_Save
    api_response = api_instance.registration_save(registrationDetails=registrationDetails)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->registrationSave: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let registrationDetails = ; // RegistrationDetails

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

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

Scopes

Parameters

Body parameters
Name Description
registrationDetails

Responses


registrationSaveAccount

Registration_SaveAccount


/Registration/SaveAccount

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/Registration/SaveAccount" \
 -d '{
  "WebsiteID" : 1,
  "CustomerClass" : "CustomerClass",
  "CurrentContract" : {
    "TermMonths" : 1,
    "ContractPaymentMethods" : [ {
      "Description" : "Description",
      "PaymentMethodID" : 4,
      "IsActive" : true,
      "Config" : [ {
        "KeyName" : "KeyName",
        "ValueOptions" : [ "ValueOptions", "ValueOptions" ],
        "Description" : "Description",
        "FriendlyName" : "FriendlyName",
        "ValueType" : 3,
        "IsTriggerReconfigure" : true,
        "Value" : "Value",
        "IsReadOnly" : true
      }, {
        "KeyName" : "KeyName",
        "ValueOptions" : [ "ValueOptions", "ValueOptions" ],
        "Description" : "Description",
        "FriendlyName" : "FriendlyName",
        "ValueType" : 3,
        "IsTriggerReconfigure" : true,
        "Value" : "Value",
        "IsReadOnly" : true
      } ],
      "CheckOutTemplate" : [ {
        "KeyName" : "KeyName",
        "ValueOptions" : [ "ValueOptions", "ValueOptions" ],
        "Description" : "Description",
        "FriendlyName" : "FriendlyName",
        "ValueType" : 3,
        "IsTriggerReconfigure" : true,
        "Value" : "Value",
        "IsReadOnly" : true
      }, {
        "KeyName" : "KeyName",
        "ValueOptions" : [ "ValueOptions", "ValueOptions" ],
        "Description" : "Description",
        "FriendlyName" : "FriendlyName",
        "ValueType" : 3,
        "IsTriggerReconfigure" : true,
        "Value" : "Value",
        "IsReadOnly" : true
      } ],
      "ID" : 2,
      "Name" : "Name"
    }, {
      "Description" : "Description",
      "PaymentMethodID" : 4,
      "IsActive" : true,
      "Config" : [ {
        "KeyName" : "KeyName",
        "ValueOptions" : [ "ValueOptions", "ValueOptions" ],
        "Description" : "Description",
        "FriendlyName" : "FriendlyName",
        "ValueType" : 3,
        "IsTriggerReconfigure" : true,
        "Value" : "Value",
        "IsReadOnly" : true
      }, {
        "KeyName" : "KeyName",
        "ValueOptions" : [ "ValueOptions", "ValueOptions" ],
        "Description" : "Description",
        "FriendlyName" : "FriendlyName",
        "ValueType" : 3,
        "IsTriggerReconfigure" : true,
        "Value" : "Value",
        "IsReadOnly" : true
      } ],
      "CheckOutTemplate" : [ {
        "KeyName" : "KeyName",
        "ValueOptions" : [ "ValueOptions", "ValueOptions" ],
        "Description" : "Description",
        "FriendlyName" : "FriendlyName",
        "ValueType" : 3,
        "IsTriggerReconfigure" : true,
        "Value" : "Value",
        "IsReadOnly" : true
      }, {
        "KeyName" : "KeyName",
        "ValueOptions" : [ "ValueOptions", "ValueOptions" ],
        "Description" : "Description",
        "FriendlyName" : "FriendlyName",
        "ValueType" : 3,
        "IsTriggerReconfigure" : true,
        "Value" : "Value",
        "IsReadOnly" : true
      } ],
      "ID" : 2,
      "Name" : "Name"
    } ],
    "Modules" : [ {
      "Type" : "Type",
      "Description" : "Description",
      "LogoURL" : "LogoURL",
      "ID" : 0,
      "Module" : "Module"
    }, {
      "Type" : "Type",
      "Description" : "Description",
      "LogoURL" : "LogoURL",
      "ID" : 0,
      "Module" : "Module"
    } ],
    "CustomerID" : 3,
    "LineCount" : 5,
    "DestinationWarehouseID" : 9,
    "IsRolledOver" : true,
    "TemplateSchedules" : [ {
      "Status" : "Status",
      "Description" : "Description",
      "IsActive" : true,
      "IsServiceSchedule" : true,
      "BillingConfig" : {
        "Recurrence" : 4,
        "DaysOfWeek" : "DaysOfWeek",
        "FrequencyType" : 1,
        "DayOfMonth" : 5,
        "BillingMode" : 7
      },
      "DurationMonths" : 9,
      "Name" : "Name",
      "IsRecurringSchedule" : true,
      "GUIDstring" : "GUIDstring",
      "ScheduleConfig" : {
        "Recurrence" : 8,
        "DaysOfWeek" : "DaysOfWeek",
        "FrequencyType" : 6,
        "DayOfMonth" : 9
      },
      "SalesOrderTemplate" : {
        "ContactCustomerName" : "ContactCustomerName",
        "TransDateString" : "TransDateString",
        "VendorTransDate" : "2000-01-23T04:56:07.000+00:00",
        "RefTransRefNumber" : "RefTransRefNumber",
        "Token" : "Token",
        "CustomerID" : 3,
        "POSTerminalShiftID" : 2,
        "IsSeparateLines" : true,
        "LastLineRowNumber" : 3,
        "POSDeviceID" : "POSDeviceID",
        "RefTransID" : 1,
        "WarehouseCode" : "WarehouseCode",
        "ShippingAddressID" : 0,
        "RepUserID" : 6,
        "IsSent" : true,
        "SyncLogs" : [ {
          "Status" : "Status",
          "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
          "AdaptorID" : 4,
          "LastImportDateTime_offset" : 2,
          "LastExportDateTime_offset" : 9,
          "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" : 0,
          "ID" : 7,
          "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
        }, {
          "Status" : "Status",
          "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
          "AdaptorID" : 4,
          "LastImportDateTime_offset" : 2,
          "LastExportDateTime_offset" : 9,
          "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" : 0,
          "ID" : 7,
          "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
        } ],
        "TotalPaid" : 0.2025324113236393,
        "Currency" : "Currency",
        "ID" : 6,
        "IsReadOnly" : true,
        "Status" : "Status",
        "VendorName" : "VendorName",
        "Messages" : [ {
          "IsSystemMessage" : true,
          "Message" : "Message",
          "IsActive" : true,
          "ToUserID" : 5,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "SentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "IsInbound" : true,
          "GUIDstring" : "GUIDstring",
          "ReceivedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "IsFromParent" : true,
          "FromUserID" : 3,
          "ReadDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "ID" : 2,
          "TransID" : 3
        }, {
          "IsSystemMessage" : true,
          "Message" : "Message",
          "IsActive" : true,
          "ToUserID" : 5,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "SentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "IsInbound" : true,
          "GUIDstring" : "GUIDstring",
          "ReceivedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "IsFromParent" : true,
          "FromUserID" : 3,
          "ReadDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "ID" : 2,
          "TransID" : 3
        } ],
        "VendorInvoiceRefNumber" : "VendorInvoiceRefNumber",
        "TotalLineCount" : 4,
        "DatTypeID" : 7,
        "TotalInc" : 0.4867146239815201,
        "BillCountry" : "BillCountry",
        "DiscountMode" : "DiscountMode",
        "ShipCustomerName" : "ShipCustomerName",
        "ContactLastName" : "ContactLastName",
        "BusinessContactID" : 4,
        "BSID" : "BSID",
        "AccountCustomerName" : "AccountCustomerName",
        "VendorRefNumber" : "VendorRefNumber",
        "BatchStatus" : "BatchStatus",
        "LinkedTrans" : [ {
          "Status" : "Status",
          "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
          "DatTypeString" : "DatTypeString",
          "ShortDatTypeString" : "ShortDatTypeString",
          "Description" : "Description",
          "Issues" : "Issues",
          "RefNumber" : "RefNumber",
          "AppliedAmount" : 8.782449469456207,
          "DatTypeID" : 5,
          "TotalInc" : 3.0269458094096646,
          "LineCount" : 8,
          "TransSubType" : "TransSubType",
          "QuantityCount" : 7.273019311111276,
          "GUIDstring" : "GUIDstring",
          "TotalEx" : 2.4669941706755685,
          "RecipientName" : "RecipientName",
          "ID" : 1
        }, {
          "Status" : "Status",
          "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
          "DatTypeString" : "DatTypeString",
          "ShortDatTypeString" : "ShortDatTypeString",
          "Description" : "Description",
          "Issues" : "Issues",
          "RefNumber" : "RefNumber",
          "AppliedAmount" : 8.782449469456207,
          "DatTypeID" : 5,
          "TotalInc" : 3.0269458094096646,
          "LineCount" : 8,
          "TransSubType" : "TransSubType",
          "QuantityCount" : 7.273019311111276,
          "GUIDstring" : "GUIDstring",
          "TotalEx" : 2.4669941706755685,
          "RecipientName" : "RecipientName",
          "ID" : 1
        } ],
        "AccountCustomerRefNumber" : "AccountCustomerRefNumber",
        "TerritoryName" : "TerritoryName",
        "IsProcessed" : true,
        "Description" : "Description",
        "Discount" : 7.88722683998926,
        "AvailableCreditString" : "AvailableCreditString",
        "CustomerBSID" : "CustomerBSID",
        "BillingAddressID" : 6,
        "ClaimRequestRefNumber" : "ClaimRequestRefNumber",
        "WasSentWhenUnlinked" : true,
        "DeliveryNote" : "DeliveryNote",
        "BillingAddress" : {
          "FullAddress" : "FullAddress",
          "IsDefaultDeliverTo" : true,
          "IsActive" : true,
          "LocationID" : 3,
          "Latitude" : 5.944895607614016,
          "GUIDstring" : "GUIDstring",
          "IsPostalAddress" : true,
          "AddressDescription" : "AddressDescription",
          "ID" : 6,
          "Notes" : "Notes",
          "IsDeliverTo" : true,
          "IsSelectedBilling" : true,
          "IsSelectedDelivery" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "City" : "City",
          "Longitude" : 6.704019297950036,
          "StreetAddress" : "StreetAddress",
          "IsMailTo" : true,
          "IsServiceTo" : true,
          "State" : "State",
          "IsDefaultServiceTo" : true,
          "IsOfficeOrShop" : true,
          "Country" : "Country",
          "IsSystem" : true,
          "AddressType" : 3,
          "PostCode" : "PostCode",
          "IsDefaultBilling" : true
        },
        "ContactPhone" : "ContactPhone",
        "VendorABN" : "VendorABN",
        "DisplayAddress" : "DisplayAddress",
        "CreatedByUserName" : "CreatedByUserName",
        "IsSentToUnlinked" : true,
        "IsCanDelete" : true,
        "ContactFirstName" : "ContactFirstName",
        "DeliveryMethod" : "DeliveryMethod",
        "AttachmentCount" : 7,
        "OriginalTotalInc" : 7.04836565559697,
        "VendorID" : 4,
        "ShipState" : "ShipState",
        "SentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "InternalNote" : "InternalNote",
        "AccountBalanceString" : "AccountBalanceString",
        "TotalEx" : 0.30134145536422907,
        "WarehouseBSID" : "WarehouseBSID",
        "TransDate" : "2000-01-23T04:56:07.000+00:00",
        "ShipCountry" : "ShipCountry",
        "TotalTaxString" : "TotalTaxString",
        "IsCanCancel" : true,
        "ShipContactPhone" : "ShipContactPhone",
        "IsLinkedToOtherParty" : true,
        "ShipLatitude" : 7.390706075830692,
        "ShipLongitude" : 1.0502890910539986,
        "WasSentWhenLinked" : true,
        "IsCreatedByOtherParty" : true,
        "RefSalesOrderRefNumber" : "RefSalesOrderRefNumber",
        "ShipStreetAddress" : "ShipStreetAddress",
        "TotalIncString" : "TotalIncString",
        "DeliveryDate" : "2000-01-23T04:56:07.000+00:00",
        "WarehouseID" : 7,
        "LineCount" : 6,
        "LinesWithUnmappedInventoryCount" : 4,
        "WarehouseName" : "WarehouseName",
        "GUIDstring" : "GUIDstring",
        "IsContractPriceTemplate" : true,
        "AvailableCredit" : 6.778324963048013,
        "BillPostCode" : "BillPostCode",
        "DueDateString" : "DueDateString",
        "CustomerRefNumber" : "CustomerRefNumber",
        "Version" : 1.284659006116532,
        "OriginalTotalEx" : 3.0576100241049344,
        "CreatedWith" : "CreatedWith",
        "TotalOwingString" : "TotalOwingString",
        "BillState" : "BillState",
        "AccountCustomerID" : 4,
        "ShipContactFirstName" : "ShipContactFirstName",
        "IsMessagesSendable" : true,
        "IsSendable" : true,
        "FinalisedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "RefNumber" : "RefNumber",
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "ShipPostCode" : "ShipPostCode",
        "IsMoreLinesToGet" : true,
        "RepUserName" : "RepUserName",
        "OriginalTotalTax" : 5.533258397034986,
        "CustomerGUIDstring" : "CustomerGUIDstring",
        "IsAccountCustomer" : true,
        "Balance" : 9.721723570087065,
        "BusinessID" : 7,
        "CreatedDateTime" : "2000-01-23T04:56:07.000+00:00",
        "Lines" : [ {
          "SellPriceInc" : 5.312489704336296,
          "FeeID" : 6,
          "TotalQuantityReceived" : 9.402167524121316,
          "AdjustedQuantityReceived" : 3.209082285545927,
          "InventoryID" : 8,
          "ShortDescription" : "ShortDescription",
          "AcquisitionWarehouseID" : 0,
          "FeeGUID" : "00000000-0000-0000-0000-000000000000",
          "SequenceNumber" : 9,
          "ID" : 9,
          "SellPriceTaxString" : "SellPriceTaxString",
          "InventoryGUIDstring" : "InventoryGUIDstring",
          "InventoryType" : "InventoryType",
          "DefaultThumbnailURL" : "DefaultThumbnailURL",
          "IsOnSpecial" : true,
          "MinOrderQuantity" : 8.251625748923757,
          "RefBarCode" : "RefBarCode",
          "IsShowOriginalPriceInReceipts" : true,
          "DatTypeID" : 0,
          "PricingMode" : "PricingMode",
          "Code" : "Code",
          "IsDiscontinued" : true,
          "LineTotalTaxString" : "LineTotalTaxString",
          "SupplierInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "EAN" : "EAN",
          "Barcode" : "Barcode",
          "IsAmendedByOtherParty" : true,
          "ReturnReason" : "ReturnReason",
          "DefaultImageURL" : "DefaultImageURL",
          "StandardSellPriceEx" : 3.502657762086401,
          "Description" : "Description",
          "ClaimReason" : "ClaimReason",
          "SellPriceTax" : 8.37823741034869,
          "QuantityPicked" : 5.7911894223693885,
          "CurrentSuppliersInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsTaxable" : true,
          "SellPriceExString" : "SellPriceExString",
          "QuantityInCartString" : "QuantityInCartString",
          "DeliveryMethod" : "DeliveryMethod",
          "SellPriceEx" : 5.299143560275359,
          "LineTotalInc" : 3.7814124730767915,
          "CommentFromOtherParty" : "CommentFromOtherParty",
          "QuantityOutofDate" : 7.726998920545485,
          "InventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsVariantMaster" : true,
          "LineTotalExString" : "LineTotalExString",
          "IsPriceRefresh" : true,
          "DiscountPercentage" : 5.974942028545841,
          "QuantityOrdered" : 1.0639121808530916,
          "IsCanUpdateInventoryOnMerge" : true,
          "QuantityOnBackOrder" : 8.28965939814297,
          "OrderTotalIncDesc" : "OrderTotalIncDesc",
          "AcquisitionMethod" : "AcquisitionMethod",
          "LabourRateID" : 4,
          "LineID" : 5,
          "RefInventoryBSID" : "RefInventoryBSID",
          "IsCreatedByOtherParty" : true,
          "WarehouseID" : 9,
          "GUIDstring" : "GUIDstring",
          "PostingInventoryCode" : "PostingInventoryCode",
          "ReturnInNumberOfWeeks" : 2.9409642974827896,
          "ExpectedBuyPriceEx" : 1.7045651386993,
          "CalculatedBuyPriceTax" : 4.4935252719377825,
          "AccountCode" : "AccountCode",
          "MaxOrderQuantity" : 6.073898085781152,
          "QuantityIncorrect" : 7.3718573971919445,
          "ClaimRequestLines" : [ {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          }, {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          } ],
          "QuantityCancelled" : 0.43431398824148815,
          "FeePercentage" : 7.933506881737151,
          "LineTotalIncString" : "LineTotalIncString",
          "StandardSellPriceInc" : 1.7325933120207193,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "UoMDescription" : "UoMDescription",
          "LineTotalEx" : 7.606863723092579,
          "IsRejected" : true,
          "ItemID" : 4,
          "FeeGUIDstring" : "FeeGUIDstring",
          "PriceDescription" : "PriceDescription",
          "LineTotalTax" : 3.111202833403195,
          "TaxType" : "TaxType",
          "PostingInventoryID" : 3,
          "CostPriceInc" : 9.183123594773994,
          "SellPriceIncString" : "SellPriceIncString",
          "QuantityClaimed" : 7.92839742024475,
          "QuantityRefunded" : 8.262795412896967,
          "PriceType" : "PriceType",
          "InventoryBSID" : "InventoryBSID",
          "Warehouse" : {
            "Description" : "Description",
            "IsActive" : true,
            "TotalNumberOfDistinctProducts" : 9,
            "Users" : [ {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            }, {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            } ],
            "Name" : "Name",
            "GUIDstring" : "GUIDstring",
            "Version" : 8.675064425986758,
            "SyncLogs" : [ {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            }, {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            } ],
            "WarehouseTypeID" : 0,
            "ID" : 4,
            "DefaultPOSCustomerName" : "DefaultPOSCustomerName",
            "MinimumStockHoldingValue" : 3.812761638325517,
            "IsDefault" : true,
            "DefaultPOSCustomerID" : 1,
            "TenantLocationName" : "TenantLocationName",
            "Code" : "Code",
            "TotalStockValue" : 1.2555055362323109,
            "RowNumber" : 3,
            "BSID" : "BSID",
            "MaximumStockHoldingValue" : 5.6644160867523485,
            "TenantLocationID" : 0,
            "Barcode" : "Barcode",
            "WarehouseType" : {
              "Description" : "Description",
              "WarehouseTypeID" : 6,
              "ID" : 4,
              "IsVirtual" : true,
              "Name" : "Name",
              "RefNumberPrefix" : "RefNumberPrefix"
            },
            "TotalSOH" : 1.3949519358941398,
            "IsSystem" : true,
            "CostCentreCode" : "CostCentreCode",
            "Location" : {
              "IsActive" : true,
              "TimeZoneName" : "TimeZoneName",
              "GUID" : "00000000-0000-0000-0000-000000000000",
              "EmailAddress" : "EmailAddress",
              "Name" : "Name",
              "LocationName" : "LocationName",
              "GUIDstring" : "GUIDstring",
              "Addresses" : [ {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              }, {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              } ],
              "UtcOffset" : 6,
              "IsVisibleToPublic" : true,
              "Contacts" : [ {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              }, {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              } ],
              "Phone" : "Phone",
              "IsSystem" : true,
              "ID" : 2,
              "Fax" : "Fax",
              "IsDefaultLocation" : true
            },
            "IsStockOpeningBalanceComplete" : true
          },
          "DeliveryMethodDescription" : "DeliveryMethodDescription",
          "CostPriceEx" : 0.4182561061793122,
          "IsActive" : true,
          "HasPriceBeenEdited" : true,
          "IsSpecialPrice" : true,
          "OrderTotalInc" : 4.459605034958679,
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "UoM" : "UoM",
          "IsPhysical" : true,
          "TaxRate" : 5.877124706116695,
          "AssetID" : 9,
          "LineType" : "LineType",
          "Comment" : "Comment",
          "RefInventoryCode" : "RefInventoryCode",
          "QuantityInCart" : 3.901545264248647,
          "Title" : "Title",
          "Quantity" : 1.8268702177058116,
          "CostPriceTax" : 8.761432466225475,
          "QuantityFaulty" : 9.785002165136461,
          "QuantityReceived" : 3.2841216543560217,
          "SKU" : "SKU",
          "CostPriceExString" : "CostPriceExString",
          "IsAssetItem" : true,
          "SupplierInventoryGUIDString" : "SupplierInventoryGUIDString"
        }, {
          "SellPriceInc" : 5.312489704336296,
          "FeeID" : 6,
          "TotalQuantityReceived" : 9.402167524121316,
          "AdjustedQuantityReceived" : 3.209082285545927,
          "InventoryID" : 8,
          "ShortDescription" : "ShortDescription",
          "AcquisitionWarehouseID" : 0,
          "FeeGUID" : "00000000-0000-0000-0000-000000000000",
          "SequenceNumber" : 9,
          "ID" : 9,
          "SellPriceTaxString" : "SellPriceTaxString",
          "InventoryGUIDstring" : "InventoryGUIDstring",
          "InventoryType" : "InventoryType",
          "DefaultThumbnailURL" : "DefaultThumbnailURL",
          "IsOnSpecial" : true,
          "MinOrderQuantity" : 8.251625748923757,
          "RefBarCode" : "RefBarCode",
          "IsShowOriginalPriceInReceipts" : true,
          "DatTypeID" : 0,
          "PricingMode" : "PricingMode",
          "Code" : "Code",
          "IsDiscontinued" : true,
          "LineTotalTaxString" : "LineTotalTaxString",
          "SupplierInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "EAN" : "EAN",
          "Barcode" : "Barcode",
          "IsAmendedByOtherParty" : true,
          "ReturnReason" : "ReturnReason",
          "DefaultImageURL" : "DefaultImageURL",
          "StandardSellPriceEx" : 3.502657762086401,
          "Description" : "Description",
          "ClaimReason" : "ClaimReason",
          "SellPriceTax" : 8.37823741034869,
          "QuantityPicked" : 5.7911894223693885,
          "CurrentSuppliersInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsTaxable" : true,
          "SellPriceExString" : "SellPriceExString",
          "QuantityInCartString" : "QuantityInCartString",
          "DeliveryMethod" : "DeliveryMethod",
          "SellPriceEx" : 5.299143560275359,
          "LineTotalInc" : 3.7814124730767915,
          "CommentFromOtherParty" : "CommentFromOtherParty",
          "QuantityOutofDate" : 7.726998920545485,
          "InventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsVariantMaster" : true,
          "LineTotalExString" : "LineTotalExString",
          "IsPriceRefresh" : true,
          "DiscountPercentage" : 5.974942028545841,
          "QuantityOrdered" : 1.0639121808530916,
          "IsCanUpdateInventoryOnMerge" : true,
          "QuantityOnBackOrder" : 8.28965939814297,
          "OrderTotalIncDesc" : "OrderTotalIncDesc",
          "AcquisitionMethod" : "AcquisitionMethod",
          "LabourRateID" : 4,
          "LineID" : 5,
          "RefInventoryBSID" : "RefInventoryBSID",
          "IsCreatedByOtherParty" : true,
          "WarehouseID" : 9,
          "GUIDstring" : "GUIDstring",
          "PostingInventoryCode" : "PostingInventoryCode",
          "ReturnInNumberOfWeeks" : 2.9409642974827896,
          "ExpectedBuyPriceEx" : 1.7045651386993,
          "CalculatedBuyPriceTax" : 4.4935252719377825,
          "AccountCode" : "AccountCode",
          "MaxOrderQuantity" : 6.073898085781152,
          "QuantityIncorrect" : 7.3718573971919445,
          "ClaimRequestLines" : [ {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          }, {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          } ],
          "QuantityCancelled" : 0.43431398824148815,
          "FeePercentage" : 7.933506881737151,
          "LineTotalIncString" : "LineTotalIncString",
          "StandardSellPriceInc" : 1.7325933120207193,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "UoMDescription" : "UoMDescription",
          "LineTotalEx" : 7.606863723092579,
          "IsRejected" : true,
          "ItemID" : 4,
          "FeeGUIDstring" : "FeeGUIDstring",
          "PriceDescription" : "PriceDescription",
          "LineTotalTax" : 3.111202833403195,
          "TaxType" : "TaxType",
          "PostingInventoryID" : 3,
          "CostPriceInc" : 9.183123594773994,
          "SellPriceIncString" : "SellPriceIncString",
          "QuantityClaimed" : 7.92839742024475,
          "QuantityRefunded" : 8.262795412896967,
          "PriceType" : "PriceType",
          "InventoryBSID" : "InventoryBSID",
          "Warehouse" : {
            "Description" : "Description",
            "IsActive" : true,
            "TotalNumberOfDistinctProducts" : 9,
            "Users" : [ {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            }, {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            } ],
            "Name" : "Name",
            "GUIDstring" : "GUIDstring",
            "Version" : 8.675064425986758,
            "SyncLogs" : [ {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            }, {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            } ],
            "WarehouseTypeID" : 0,
            "ID" : 4,
            "DefaultPOSCustomerName" : "DefaultPOSCustomerName",
            "MinimumStockHoldingValue" : 3.812761638325517,
            "IsDefault" : true,
            "DefaultPOSCustomerID" : 1,
            "TenantLocationName" : "TenantLocationName",
            "Code" : "Code",
            "TotalStockValue" : 1.2555055362323109,
            "RowNumber" : 3,
            "BSID" : "BSID",
            "MaximumStockHoldingValue" : 5.6644160867523485,
            "TenantLocationID" : 0,
            "Barcode" : "Barcode",
            "WarehouseType" : {
              "Description" : "Description",
              "WarehouseTypeID" : 6,
              "ID" : 4,
              "IsVirtual" : true,
              "Name" : "Name",
              "RefNumberPrefix" : "RefNumberPrefix"
            },
            "TotalSOH" : 1.3949519358941398,
            "IsSystem" : true,
            "CostCentreCode" : "CostCentreCode",
            "Location" : {
              "IsActive" : true,
              "TimeZoneName" : "TimeZoneName",
              "GUID" : "00000000-0000-0000-0000-000000000000",
              "EmailAddress" : "EmailAddress",
              "Name" : "Name",
              "LocationName" : "LocationName",
              "GUIDstring" : "GUIDstring",
              "Addresses" : [ {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              }, {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              } ],
              "UtcOffset" : 6,
              "IsVisibleToPublic" : true,
              "Contacts" : [ {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              }, {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              } ],
              "Phone" : "Phone",
              "IsSystem" : true,
              "ID" : 2,
              "Fax" : "Fax",
              "IsDefaultLocation" : true
            },
            "IsStockOpeningBalanceComplete" : true
          },
          "DeliveryMethodDescription" : "DeliveryMethodDescription",
          "CostPriceEx" : 0.4182561061793122,
          "IsActive" : true,
          "HasPriceBeenEdited" : true,
          "IsSpecialPrice" : true,
          "OrderTotalInc" : 4.459605034958679,
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "UoM" : "UoM",
          "IsPhysical" : true,
          "TaxRate" : 5.877124706116695,
          "AssetID" : 9,
          "LineType" : "LineType",
          "Comment" : "Comment",
          "RefInventoryCode" : "RefInventoryCode",
          "QuantityInCart" : 3.901545264248647,
          "Title" : "Title",
          "Quantity" : 1.8268702177058116,
          "CostPriceTax" : 8.761432466225475,
          "QuantityFaulty" : 9.785002165136461,
          "QuantityReceived" : 3.2841216543560217,
          "SKU" : "SKU",
          "CostPriceExString" : "CostPriceExString",
          "IsAssetItem" : true,
          "SupplierInventoryGUIDString" : "SupplierInventoryGUIDString"
        } ],
        "ExchangeRate" : 6.176386745020588,
        "RepEmailAddress" : "RepEmailAddress",
        "IsActive" : true,
        "TotalExString" : "TotalExString",
        "ShipContactLastName" : "ShipContactLastName",
        "BillLatitude" : 0.11859130807119977,
        "TransType" : "TransType",
        "ContractID" : 0,
        "Attachments" : [ {
          "AttachmentType" : "AttachmentType",
          "LineID" : 2,
          "IsActive" : true,
          "ThumbnailURI" : "ThumbnailURI",
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "IsImage" : true,
          "URI" : "URI",
          "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Caption" : "Caption",
          "GUIDstring" : "GUIDstring",
          "IsPDF" : true,
          "IsFromParent" : true,
          "ID" : 7,
          "AttachedByUserID" : 3,
          "MessageID" : 0
        }, {
          "AttachmentType" : "AttachmentType",
          "LineID" : 2,
          "IsActive" : true,
          "ThumbnailURI" : "ThumbnailURI",
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "IsImage" : true,
          "URI" : "URI",
          "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Caption" : "Caption",
          "GUIDstring" : "GUIDstring",
          "IsPDF" : true,
          "IsFromParent" : true,
          "ID" : 7,
          "AttachedByUserID" : 3,
          "MessageID" : 0
        } ],
        "QuantityCount" : 8.969578798196912,
        "TotalOwing" : 0.10263654006109402,
        "HasBeenAmended" : true,
        "AccountBalance" : 2.8841621266687802,
        "TotalTax" : 9.456612101333725,
        "RepLastName" : "RepLastName",
        "ExternalTerminalName" : "ExternalTerminalName",
        "CashPaymentRounding" : 4.1661834558007,
        "UseIncPrices" : true,
        "CustomerName" : "CustomerName",
        "DueDate" : "2000-01-23T04:56:07.000+00:00",
        "TerritoryID" : 6,
        "ShipContactEmailAddress" : "ShipContactEmailAddress",
        "ExternalNotes" : "ExternalNotes",
        "AcceptedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "ShipCity" : "ShipCity",
        "BillCity" : "BillCity",
        "BillStreetAddress" : "BillStreetAddress",
        "Contact" : {
          "BusinessName" : "BusinessName",
          "FirstName" : "FirstName",
          "IsActive" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
          "Birthday" : "2000-01-23T04:56:07.000+00:00",
          "Gender" : "Gender",
          "PositionOrOccupation" : "PositionOrOccupation",
          "IsIncludeInEmails" : true,
          "EmailAddress" : "EmailAddress",
          "ContactRole" : "ContactRole",
          "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
          "BusinessContactID" : 7,
          "GUIDstring" : "GUIDstring",
          "PhoneMobile" : "PhoneMobile",
          "IsPrimaryContact" : true,
          "Phone1" : "Phone1",
          "IsSystem" : true,
          "ID" : 4,
          "LastName" : "LastName",
          "BusinessID" : 1
        },
        "InvoiceType" : "InvoiceType",
        "IsIndividual" : true,
        "HasBeenAmendedByOtherParty" : true,
        "ReceivedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "RowNumber" : 6,
        "ContactEmailAddress" : "ContactEmailAddress",
        "InboxID" : 3,
        "BillLongitude" : 4.637509675190766,
        "ShippingAddress" : {
          "FullAddress" : "FullAddress",
          "IsDefaultDeliverTo" : true,
          "IsActive" : true,
          "LocationID" : 3,
          "Latitude" : 5.944895607614016,
          "GUIDstring" : "GUIDstring",
          "IsPostalAddress" : true,
          "AddressDescription" : "AddressDescription",
          "ID" : 6,
          "Notes" : "Notes",
          "IsDeliverTo" : true,
          "IsSelectedBilling" : true,
          "IsSelectedDelivery" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "City" : "City",
          "Longitude" : 6.704019297950036,
          "StreetAddress" : "StreetAddress",
          "IsMailTo" : true,
          "IsServiceTo" : true,
          "State" : "State",
          "IsDefaultServiceTo" : true,
          "IsOfficeOrShop" : true,
          "Country" : "Country",
          "IsSystem" : true,
          "AddressType" : 3,
          "PostCode" : "PostCode",
          "IsDefaultBilling" : true
        },
        "CreatedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "TotalPaidString" : "TotalPaidString",
        "CustomerRefTransRefNumber" : "CustomerRefTransRefNumber",
        "CostCentreCode" : "CostCentreCode",
        "VendorTransRefNumber" : "VendorTransRefNumber",
        "CreatedDateTime_offset" : 7,
        "RepFirstName" : "RepFirstName"
      },
      "ID" : 9,
      "IsBillable" : true
    }, {
      "Status" : "Status",
      "Description" : "Description",
      "IsActive" : true,
      "IsServiceSchedule" : true,
      "BillingConfig" : {
        "Recurrence" : 4,
        "DaysOfWeek" : "DaysOfWeek",
        "FrequencyType" : 1,
        "DayOfMonth" : 5,
        "BillingMode" : 7
      },
      "DurationMonths" : 9,
      "Name" : "Name",
      "IsRecurringSchedule" : true,
      "GUIDstring" : "GUIDstring",
      "ScheduleConfig" : {
        "Recurrence" : 8,
        "DaysOfWeek" : "DaysOfWeek",
        "FrequencyType" : 6,
        "DayOfMonth" : 9
      },
      "SalesOrderTemplate" : {
        "ContactCustomerName" : "ContactCustomerName",
        "TransDateString" : "TransDateString",
        "VendorTransDate" : "2000-01-23T04:56:07.000+00:00",
        "RefTransRefNumber" : "RefTransRefNumber",
        "Token" : "Token",
        "CustomerID" : 3,
        "POSTerminalShiftID" : 2,
        "IsSeparateLines" : true,
        "LastLineRowNumber" : 3,
        "POSDeviceID" : "POSDeviceID",
        "RefTransID" : 1,
        "WarehouseCode" : "WarehouseCode",
        "ShippingAddressID" : 0,
        "RepUserID" : 6,
        "IsSent" : true,
        "SyncLogs" : [ {
          "Status" : "Status",
          "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
          "AdaptorID" : 4,
          "LastImportDateTime_offset" : 2,
          "LastExportDateTime_offset" : 9,
          "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" : 0,
          "ID" : 7,
          "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
        }, {
          "Status" : "Status",
          "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
          "AdaptorID" : 4,
          "LastImportDateTime_offset" : 2,
          "LastExportDateTime_offset" : 9,
          "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" : 0,
          "ID" : 7,
          "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
        } ],
        "TotalPaid" : 0.2025324113236393,
        "Currency" : "Currency",
        "ID" : 6,
        "IsReadOnly" : true,
        "Status" : "Status",
        "VendorName" : "VendorName",
        "Messages" : [ {
          "IsSystemMessage" : true,
          "Message" : "Message",
          "IsActive" : true,
          "ToUserID" : 5,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "SentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "IsInbound" : true,
          "GUIDstring" : "GUIDstring",
          "ReceivedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "IsFromParent" : true,
          "FromUserID" : 3,
          "ReadDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "ID" : 2,
          "TransID" : 3
        }, {
          "IsSystemMessage" : true,
          "Message" : "Message",
          "IsActive" : true,
          "ToUserID" : 5,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "SentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "IsInbound" : true,
          "GUIDstring" : "GUIDstring",
          "ReceivedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "IsFromParent" : true,
          "FromUserID" : 3,
          "ReadDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "ID" : 2,
          "TransID" : 3
        } ],
        "VendorInvoiceRefNumber" : "VendorInvoiceRefNumber",
        "TotalLineCount" : 4,
        "DatTypeID" : 7,
        "TotalInc" : 0.4867146239815201,
        "BillCountry" : "BillCountry",
        "DiscountMode" : "DiscountMode",
        "ShipCustomerName" : "ShipCustomerName",
        "ContactLastName" : "ContactLastName",
        "BusinessContactID" : 4,
        "BSID" : "BSID",
        "AccountCustomerName" : "AccountCustomerName",
        "VendorRefNumber" : "VendorRefNumber",
        "BatchStatus" : "BatchStatus",
        "LinkedTrans" : [ {
          "Status" : "Status",
          "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
          "DatTypeString" : "DatTypeString",
          "ShortDatTypeString" : "ShortDatTypeString",
          "Description" : "Description",
          "Issues" : "Issues",
          "RefNumber" : "RefNumber",
          "AppliedAmount" : 8.782449469456207,
          "DatTypeID" : 5,
          "TotalInc" : 3.0269458094096646,
          "LineCount" : 8,
          "TransSubType" : "TransSubType",
          "QuantityCount" : 7.273019311111276,
          "GUIDstring" : "GUIDstring",
          "TotalEx" : 2.4669941706755685,
          "RecipientName" : "RecipientName",
          "ID" : 1
        }, {
          "Status" : "Status",
          "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
          "DatTypeString" : "DatTypeString",
          "ShortDatTypeString" : "ShortDatTypeString",
          "Description" : "Description",
          "Issues" : "Issues",
          "RefNumber" : "RefNumber",
          "AppliedAmount" : 8.782449469456207,
          "DatTypeID" : 5,
          "TotalInc" : 3.0269458094096646,
          "LineCount" : 8,
          "TransSubType" : "TransSubType",
          "QuantityCount" : 7.273019311111276,
          "GUIDstring" : "GUIDstring",
          "TotalEx" : 2.4669941706755685,
          "RecipientName" : "RecipientName",
          "ID" : 1
        } ],
        "AccountCustomerRefNumber" : "AccountCustomerRefNumber",
        "TerritoryName" : "TerritoryName",
        "IsProcessed" : true,
        "Description" : "Description",
        "Discount" : 7.88722683998926,
        "AvailableCreditString" : "AvailableCreditString",
        "CustomerBSID" : "CustomerBSID",
        "BillingAddressID" : 6,
        "ClaimRequestRefNumber" : "ClaimRequestRefNumber",
        "WasSentWhenUnlinked" : true,
        "DeliveryNote" : "DeliveryNote",
        "BillingAddress" : {
          "FullAddress" : "FullAddress",
          "IsDefaultDeliverTo" : true,
          "IsActive" : true,
          "LocationID" : 3,
          "Latitude" : 5.944895607614016,
          "GUIDstring" : "GUIDstring",
          "IsPostalAddress" : true,
          "AddressDescription" : "AddressDescription",
          "ID" : 6,
          "Notes" : "Notes",
          "IsDeliverTo" : true,
          "IsSelectedBilling" : true,
          "IsSelectedDelivery" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "City" : "City",
          "Longitude" : 6.704019297950036,
          "StreetAddress" : "StreetAddress",
          "IsMailTo" : true,
          "IsServiceTo" : true,
          "State" : "State",
          "IsDefaultServiceTo" : true,
          "IsOfficeOrShop" : true,
          "Country" : "Country",
          "IsSystem" : true,
          "AddressType" : 3,
          "PostCode" : "PostCode",
          "IsDefaultBilling" : true
        },
        "ContactPhone" : "ContactPhone",
        "VendorABN" : "VendorABN",
        "DisplayAddress" : "DisplayAddress",
        "CreatedByUserName" : "CreatedByUserName",
        "IsSentToUnlinked" : true,
        "IsCanDelete" : true,
        "ContactFirstName" : "ContactFirstName",
        "DeliveryMethod" : "DeliveryMethod",
        "AttachmentCount" : 7,
        "OriginalTotalInc" : 7.04836565559697,
        "VendorID" : 4,
        "ShipState" : "ShipState",
        "SentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "InternalNote" : "InternalNote",
        "AccountBalanceString" : "AccountBalanceString",
        "TotalEx" : 0.30134145536422907,
        "WarehouseBSID" : "WarehouseBSID",
        "TransDate" : "2000-01-23T04:56:07.000+00:00",
        "ShipCountry" : "ShipCountry",
        "TotalTaxString" : "TotalTaxString",
        "IsCanCancel" : true,
        "ShipContactPhone" : "ShipContactPhone",
        "IsLinkedToOtherParty" : true,
        "ShipLatitude" : 7.390706075830692,
        "ShipLongitude" : 1.0502890910539986,
        "WasSentWhenLinked" : true,
        "IsCreatedByOtherParty" : true,
        "RefSalesOrderRefNumber" : "RefSalesOrderRefNumber",
        "ShipStreetAddress" : "ShipStreetAddress",
        "TotalIncString" : "TotalIncString",
        "DeliveryDate" : "2000-01-23T04:56:07.000+00:00",
        "WarehouseID" : 7,
        "LineCount" : 6,
        "LinesWithUnmappedInventoryCount" : 4,
        "WarehouseName" : "WarehouseName",
        "GUIDstring" : "GUIDstring",
        "IsContractPriceTemplate" : true,
        "AvailableCredit" : 6.778324963048013,
        "BillPostCode" : "BillPostCode",
        "DueDateString" : "DueDateString",
        "CustomerRefNumber" : "CustomerRefNumber",
        "Version" : 1.284659006116532,
        "OriginalTotalEx" : 3.0576100241049344,
        "CreatedWith" : "CreatedWith",
        "TotalOwingString" : "TotalOwingString",
        "BillState" : "BillState",
        "AccountCustomerID" : 4,
        "ShipContactFirstName" : "ShipContactFirstName",
        "IsMessagesSendable" : true,
        "IsSendable" : true,
        "FinalisedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "RefNumber" : "RefNumber",
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "ShipPostCode" : "ShipPostCode",
        "IsMoreLinesToGet" : true,
        "RepUserName" : "RepUserName",
        "OriginalTotalTax" : 5.533258397034986,
        "CustomerGUIDstring" : "CustomerGUIDstring",
        "IsAccountCustomer" : true,
        "Balance" : 9.721723570087065,
        "BusinessID" : 7,
        "CreatedDateTime" : "2000-01-23T04:56:07.000+00:00",
        "Lines" : [ {
          "SellPriceInc" : 5.312489704336296,
          "FeeID" : 6,
          "TotalQuantityReceived" : 9.402167524121316,
          "AdjustedQuantityReceived" : 3.209082285545927,
          "InventoryID" : 8,
          "ShortDescription" : "ShortDescription",
          "AcquisitionWarehouseID" : 0,
          "FeeGUID" : "00000000-0000-0000-0000-000000000000",
          "SequenceNumber" : 9,
          "ID" : 9,
          "SellPriceTaxString" : "SellPriceTaxString",
          "InventoryGUIDstring" : "InventoryGUIDstring",
          "InventoryType" : "InventoryType",
          "DefaultThumbnailURL" : "DefaultThumbnailURL",
          "IsOnSpecial" : true,
          "MinOrderQuantity" : 8.251625748923757,
          "RefBarCode" : "RefBarCode",
          "IsShowOriginalPriceInReceipts" : true,
          "DatTypeID" : 0,
          "PricingMode" : "PricingMode",
          "Code" : "Code",
          "IsDiscontinued" : true,
          "LineTotalTaxString" : "LineTotalTaxString",
          "SupplierInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "EAN" : "EAN",
          "Barcode" : "Barcode",
          "IsAmendedByOtherParty" : true,
          "ReturnReason" : "ReturnReason",
          "DefaultImageURL" : "DefaultImageURL",
          "StandardSellPriceEx" : 3.502657762086401,
          "Description" : "Description",
          "ClaimReason" : "ClaimReason",
          "SellPriceTax" : 8.37823741034869,
          "QuantityPicked" : 5.7911894223693885,
          "CurrentSuppliersInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsTaxable" : true,
          "SellPriceExString" : "SellPriceExString",
          "QuantityInCartString" : "QuantityInCartString",
          "DeliveryMethod" : "DeliveryMethod",
          "SellPriceEx" : 5.299143560275359,
          "LineTotalInc" : 3.7814124730767915,
          "CommentFromOtherParty" : "CommentFromOtherParty",
          "QuantityOutofDate" : 7.726998920545485,
          "InventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsVariantMaster" : true,
          "LineTotalExString" : "LineTotalExString",
          "IsPriceRefresh" : true,
          "DiscountPercentage" : 5.974942028545841,
          "QuantityOrdered" : 1.0639121808530916,
          "IsCanUpdateInventoryOnMerge" : true,
          "QuantityOnBackOrder" : 8.28965939814297,
          "OrderTotalIncDesc" : "OrderTotalIncDesc",
          "AcquisitionMethod" : "AcquisitionMethod",
          "LabourRateID" : 4,
          "LineID" : 5,
          "RefInventoryBSID" : "RefInventoryBSID",
          "IsCreatedByOtherParty" : true,
          "WarehouseID" : 9,
          "GUIDstring" : "GUIDstring",
          "PostingInventoryCode" : "PostingInventoryCode",
          "ReturnInNumberOfWeeks" : 2.9409642974827896,
          "ExpectedBuyPriceEx" : 1.7045651386993,
          "CalculatedBuyPriceTax" : 4.4935252719377825,
          "AccountCode" : "AccountCode",
          "MaxOrderQuantity" : 6.073898085781152,
          "QuantityIncorrect" : 7.3718573971919445,
          "ClaimRequestLines" : [ {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          }, {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          } ],
          "QuantityCancelled" : 0.43431398824148815,
          "FeePercentage" : 7.933506881737151,
          "LineTotalIncString" : "LineTotalIncString",
          "StandardSellPriceInc" : 1.7325933120207193,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "UoMDescription" : "UoMDescription",
          "LineTotalEx" : 7.606863723092579,
          "IsRejected" : true,
          "ItemID" : 4,
          "FeeGUIDstring" : "FeeGUIDstring",
          "PriceDescription" : "PriceDescription",
          "LineTotalTax" : 3.111202833403195,
          "TaxType" : "TaxType",
          "PostingInventoryID" : 3,
          "CostPriceInc" : 9.183123594773994,
          "SellPriceIncString" : "SellPriceIncString",
          "QuantityClaimed" : 7.92839742024475,
          "QuantityRefunded" : 8.262795412896967,
          "PriceType" : "PriceType",
          "InventoryBSID" : "InventoryBSID",
          "Warehouse" : {
            "Description" : "Description",
            "IsActive" : true,
            "TotalNumberOfDistinctProducts" : 9,
            "Users" : [ {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            }, {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            } ],
            "Name" : "Name",
            "GUIDstring" : "GUIDstring",
            "Version" : 8.675064425986758,
            "SyncLogs" : [ {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            }, {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            } ],
            "WarehouseTypeID" : 0,
            "ID" : 4,
            "DefaultPOSCustomerName" : "DefaultPOSCustomerName",
            "MinimumStockHoldingValue" : 3.812761638325517,
            "IsDefault" : true,
            "DefaultPOSCustomerID" : 1,
            "TenantLocationName" : "TenantLocationName",
            "Code" : "Code",
            "TotalStockValue" : 1.2555055362323109,
            "RowNumber" : 3,
            "BSID" : "BSID",
            "MaximumStockHoldingValue" : 5.6644160867523485,
            "TenantLocationID" : 0,
            "Barcode" : "Barcode",
            "WarehouseType" : {
              "Description" : "Description",
              "WarehouseTypeID" : 6,
              "ID" : 4,
              "IsVirtual" : true,
              "Name" : "Name",
              "RefNumberPrefix" : "RefNumberPrefix"
            },
            "TotalSOH" : 1.3949519358941398,
            "IsSystem" : true,
            "CostCentreCode" : "CostCentreCode",
            "Location" : {
              "IsActive" : true,
              "TimeZoneName" : "TimeZoneName",
              "GUID" : "00000000-0000-0000-0000-000000000000",
              "EmailAddress" : "EmailAddress",
              "Name" : "Name",
              "LocationName" : "LocationName",
              "GUIDstring" : "GUIDstring",
              "Addresses" : [ {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              }, {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              } ],
              "UtcOffset" : 6,
              "IsVisibleToPublic" : true,
              "Contacts" : [ {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              }, {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              } ],
              "Phone" : "Phone",
              "IsSystem" : true,
              "ID" : 2,
              "Fax" : "Fax",
              "IsDefaultLocation" : true
            },
            "IsStockOpeningBalanceComplete" : true
          },
          "DeliveryMethodDescription" : "DeliveryMethodDescription",
          "CostPriceEx" : 0.4182561061793122,
          "IsActive" : true,
          "HasPriceBeenEdited" : true,
          "IsSpecialPrice" : true,
          "OrderTotalInc" : 4.459605034958679,
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "UoM" : "UoM",
          "IsPhysical" : true,
          "TaxRate" : 5.877124706116695,
          "AssetID" : 9,
          "LineType" : "LineType",
          "Comment" : "Comment",
          "RefInventoryCode" : "RefInventoryCode",
          "QuantityInCart" : 3.901545264248647,
          "Title" : "Title",
          "Quantity" : 1.8268702177058116,
          "CostPriceTax" : 8.761432466225475,
          "QuantityFaulty" : 9.785002165136461,
          "QuantityReceived" : 3.2841216543560217,
          "SKU" : "SKU",
          "CostPriceExString" : "CostPriceExString",
          "IsAssetItem" : true,
          "SupplierInventoryGUIDString" : "SupplierInventoryGUIDString"
        }, {
          "SellPriceInc" : 5.312489704336296,
          "FeeID" : 6,
          "TotalQuantityReceived" : 9.402167524121316,
          "AdjustedQuantityReceived" : 3.209082285545927,
          "InventoryID" : 8,
          "ShortDescription" : "ShortDescription",
          "AcquisitionWarehouseID" : 0,
          "FeeGUID" : "00000000-0000-0000-0000-000000000000",
          "SequenceNumber" : 9,
          "ID" : 9,
          "SellPriceTaxString" : "SellPriceTaxString",
          "InventoryGUIDstring" : "InventoryGUIDstring",
          "InventoryType" : "InventoryType",
          "DefaultThumbnailURL" : "DefaultThumbnailURL",
          "IsOnSpecial" : true,
          "MinOrderQuantity" : 8.251625748923757,
          "RefBarCode" : "RefBarCode",
          "IsShowOriginalPriceInReceipts" : true,
          "DatTypeID" : 0,
          "PricingMode" : "PricingMode",
          "Code" : "Code",
          "IsDiscontinued" : true,
          "LineTotalTaxString" : "LineTotalTaxString",
          "SupplierInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "EAN" : "EAN",
          "Barcode" : "Barcode",
          "IsAmendedByOtherParty" : true,
          "ReturnReason" : "ReturnReason",
          "DefaultImageURL" : "DefaultImageURL",
          "StandardSellPriceEx" : 3.502657762086401,
          "Description" : "Description",
          "ClaimReason" : "ClaimReason",
          "SellPriceTax" : 8.37823741034869,
          "QuantityPicked" : 5.7911894223693885,
          "CurrentSuppliersInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsTaxable" : true,
          "SellPriceExString" : "SellPriceExString",
          "QuantityInCartString" : "QuantityInCartString",
          "DeliveryMethod" : "DeliveryMethod",
          "SellPriceEx" : 5.299143560275359,
          "LineTotalInc" : 3.7814124730767915,
          "CommentFromOtherParty" : "CommentFromOtherParty",
          "QuantityOutofDate" : 7.726998920545485,
          "InventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsVariantMaster" : true,
          "LineTotalExString" : "LineTotalExString",
          "IsPriceRefresh" : true,
          "DiscountPercentage" : 5.974942028545841,
          "QuantityOrdered" : 1.0639121808530916,
          "IsCanUpdateInventoryOnMerge" : true,
          "QuantityOnBackOrder" : 8.28965939814297,
          "OrderTotalIncDesc" : "OrderTotalIncDesc",
          "AcquisitionMethod" : "AcquisitionMethod",
          "LabourRateID" : 4,
          "LineID" : 5,
          "RefInventoryBSID" : "RefInventoryBSID",
          "IsCreatedByOtherParty" : true,
          "WarehouseID" : 9,
          "GUIDstring" : "GUIDstring",
          "PostingInventoryCode" : "PostingInventoryCode",
          "ReturnInNumberOfWeeks" : 2.9409642974827896,
          "ExpectedBuyPriceEx" : 1.7045651386993,
          "CalculatedBuyPriceTax" : 4.4935252719377825,
          "AccountCode" : "AccountCode",
          "MaxOrderQuantity" : 6.073898085781152,
          "QuantityIncorrect" : 7.3718573971919445,
          "ClaimRequestLines" : [ {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          }, {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          } ],
          "QuantityCancelled" : 0.43431398824148815,
          "FeePercentage" : 7.933506881737151,
          "LineTotalIncString" : "LineTotalIncString",
          "StandardSellPriceInc" : 1.7325933120207193,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "UoMDescription" : "UoMDescription",
          "LineTotalEx" : 7.606863723092579,
          "IsRejected" : true,
          "ItemID" : 4,
          "FeeGUIDstring" : "FeeGUIDstring",
          "PriceDescription" : "PriceDescription",
          "LineTotalTax" : 3.111202833403195,
          "TaxType" : "TaxType",
          "PostingInventoryID" : 3,
          "CostPriceInc" : 9.183123594773994,
          "SellPriceIncString" : "SellPriceIncString",
          "QuantityClaimed" : 7.92839742024475,
          "QuantityRefunded" : 8.262795412896967,
          "PriceType" : "PriceType",
          "InventoryBSID" : "InventoryBSID",
          "Warehouse" : {
            "Description" : "Description",
            "IsActive" : true,
            "TotalNumberOfDistinctProducts" : 9,
            "Users" : [ {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            }, {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            } ],
            "Name" : "Name",
            "GUIDstring" : "GUIDstring",
            "Version" : 8.675064425986758,
            "SyncLogs" : [ {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            }, {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            } ],
            "WarehouseTypeID" : 0,
            "ID" : 4,
            "DefaultPOSCustomerName" : "DefaultPOSCustomerName",
            "MinimumStockHoldingValue" : 3.812761638325517,
            "IsDefault" : true,
            "DefaultPOSCustomerID" : 1,
            "TenantLocationName" : "TenantLocationName",
            "Code" : "Code",
            "TotalStockValue" : 1.2555055362323109,
            "RowNumber" : 3,
            "BSID" : "BSID",
            "MaximumStockHoldingValue" : 5.6644160867523485,
            "TenantLocationID" : 0,
            "Barcode" : "Barcode",
            "WarehouseType" : {
              "Description" : "Description",
              "WarehouseTypeID" : 6,
              "ID" : 4,
              "IsVirtual" : true,
              "Name" : "Name",
              "RefNumberPrefix" : "RefNumberPrefix"
            },
            "TotalSOH" : 1.3949519358941398,
            "IsSystem" : true,
            "CostCentreCode" : "CostCentreCode",
            "Location" : {
              "IsActive" : true,
              "TimeZoneName" : "TimeZoneName",
              "GUID" : "00000000-0000-0000-0000-000000000000",
              "EmailAddress" : "EmailAddress",
              "Name" : "Name",
              "LocationName" : "LocationName",
              "GUIDstring" : "GUIDstring",
              "Addresses" : [ {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              }, {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              } ],
              "UtcOffset" : 6,
              "IsVisibleToPublic" : true,
              "Contacts" : [ {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              }, {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              } ],
              "Phone" : "Phone",
              "IsSystem" : true,
              "ID" : 2,
              "Fax" : "Fax",
              "IsDefaultLocation" : true
            },
            "IsStockOpeningBalanceComplete" : true
          },
          "DeliveryMethodDescription" : "DeliveryMethodDescription",
          "CostPriceEx" : 0.4182561061793122,
          "IsActive" : true,
          "HasPriceBeenEdited" : true,
          "IsSpecialPrice" : true,
          "OrderTotalInc" : 4.459605034958679,
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "UoM" : "UoM",
          "IsPhysical" : true,
          "TaxRate" : 5.877124706116695,
          "AssetID" : 9,
          "LineType" : "LineType",
          "Comment" : "Comment",
          "RefInventoryCode" : "RefInventoryCode",
          "QuantityInCart" : 3.901545264248647,
          "Title" : "Title",
          "Quantity" : 1.8268702177058116,
          "CostPriceTax" : 8.761432466225475,
          "QuantityFaulty" : 9.785002165136461,
          "QuantityReceived" : 3.2841216543560217,
          "SKU" : "SKU",
          "CostPriceExString" : "CostPriceExString",
          "IsAssetItem" : true,
          "SupplierInventoryGUIDString" : "SupplierInventoryGUIDString"
        } ],
        "ExchangeRate" : 6.176386745020588,
        "RepEmailAddress" : "RepEmailAddress",
        "IsActive" : true,
        "TotalExString" : "TotalExString",
        "ShipContactLastName" : "ShipContactLastName",
        "BillLatitude" : 0.11859130807119977,
        "TransType" : "TransType",
        "ContractID" : 0,
        "Attachments" : [ {
          "AttachmentType" : "AttachmentType",
          "LineID" : 2,
          "IsActive" : true,
          "ThumbnailURI" : "ThumbnailURI",
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "IsImage" : true,
          "URI" : "URI",
          "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Caption" : "Caption",
          "GUIDstring" : "GUIDstring",
          "IsPDF" : true,
          "IsFromParent" : true,
          "ID" : 7,
          "AttachedByUserID" : 3,
          "MessageID" : 0
        }, {
          "AttachmentType" : "AttachmentType",
          "LineID" : 2,
          "IsActive" : true,
          "ThumbnailURI" : "ThumbnailURI",
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "IsImage" : true,
          "URI" : "URI",
          "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Caption" : "Caption",
          "GUIDstring" : "GUIDstring",
          "IsPDF" : true,
          "IsFromParent" : true,
          "ID" : 7,
          "AttachedByUserID" : 3,
          "MessageID" : 0
        } ],
        "QuantityCount" : 8.969578798196912,
        "TotalOwing" : 0.10263654006109402,
        "HasBeenAmended" : true,
        "AccountBalance" : 2.8841621266687802,
        "TotalTax" : 9.456612101333725,
        "RepLastName" : "RepLastName",
        "ExternalTerminalName" : "ExternalTerminalName",
        "CashPaymentRounding" : 4.1661834558007,
        "UseIncPrices" : true,
        "CustomerName" : "CustomerName",
        "DueDate" : "2000-01-23T04:56:07.000+00:00",
        "TerritoryID" : 6,
        "ShipContactEmailAddress" : "ShipContactEmailAddress",
        "ExternalNotes" : "ExternalNotes",
        "AcceptedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "ShipCity" : "ShipCity",
        "BillCity" : "BillCity",
        "BillStreetAddress" : "BillStreetAddress",
        "Contact" : {
          "BusinessName" : "BusinessName",
          "FirstName" : "FirstName",
          "IsActive" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
          "Birthday" : "2000-01-23T04:56:07.000+00:00",
          "Gender" : "Gender",
          "PositionOrOccupation" : "PositionOrOccupation",
          "IsIncludeInEmails" : true,
          "EmailAddress" : "EmailAddress",
          "ContactRole" : "ContactRole",
          "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
          "BusinessContactID" : 7,
          "GUIDstring" : "GUIDstring",
          "PhoneMobile" : "PhoneMobile",
          "IsPrimaryContact" : true,
          "Phone1" : "Phone1",
          "IsSystem" : true,
          "ID" : 4,
          "LastName" : "LastName",
          "BusinessID" : 1
        },
        "InvoiceType" : "InvoiceType",
        "IsIndividual" : true,
        "HasBeenAmendedByOtherParty" : true,
        "ReceivedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "RowNumber" : 6,
        "ContactEmailAddress" : "ContactEmailAddress",
        "InboxID" : 3,
        "BillLongitude" : 4.637509675190766,
        "ShippingAddress" : {
          "FullAddress" : "FullAddress",
          "IsDefaultDeliverTo" : true,
          "IsActive" : true,
          "LocationID" : 3,
          "Latitude" : 5.944895607614016,
          "GUIDstring" : "GUIDstring",
          "IsPostalAddress" : true,
          "AddressDescription" : "AddressDescription",
          "ID" : 6,
          "Notes" : "Notes",
          "IsDeliverTo" : true,
          "IsSelectedBilling" : true,
          "IsSelectedDelivery" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "City" : "City",
          "Longitude" : 6.704019297950036,
          "StreetAddress" : "StreetAddress",
          "IsMailTo" : true,
          "IsServiceTo" : true,
          "State" : "State",
          "IsDefaultServiceTo" : true,
          "IsOfficeOrShop" : true,
          "Country" : "Country",
          "IsSystem" : true,
          "AddressType" : 3,
          "PostCode" : "PostCode",
          "IsDefaultBilling" : true
        },
        "CreatedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "TotalPaidString" : "TotalPaidString",
        "CustomerRefTransRefNumber" : "CustomerRefTransRefNumber",
        "CostCentreCode" : "CostCentreCode",
        "VendorTransRefNumber" : "VendorTransRefNumber",
        "CreatedDateTime_offset" : 7,
        "RepFirstName" : "RepFirstName"
      },
      "ID" : 9,
      "IsBillable" : true
    } ],
    "Name" : "Name",
    "IsApproved" : true,
    "InventoryID" : 6,
    "GUIDstring" : "GUIDstring",
    "StartDate" : "2000-01-23T04:56:07.000+00:00",
    "CustomerRefNumber" : "CustomerRefNumber",
    "QATemplate" : [ {
      "KeyName" : "KeyName",
      "ValueOptions" : [ "ValueOptions", "ValueOptions" ],
      "Description" : "Description",
      "FriendlyName" : "FriendlyName",
      "ValueType" : 3,
      "IsTriggerReconfigure" : true,
      "Value" : "Value",
      "IsReadOnly" : true
    }, {
      "KeyName" : "KeyName",
      "ValueOptions" : [ "ValueOptions", "ValueOptions" ],
      "Description" : "Description",
      "FriendlyName" : "FriendlyName",
      "ValueType" : 3,
      "IsTriggerReconfigure" : true,
      "Value" : "Value",
      "IsReadOnly" : true
    } ],
    "DestinationWarehouseName" : "DestinationWarehouseName",
    "ID" : 9,
    "IsReadOnly" : true,
    "BillingDescription" : "BillingDescription",
    "Status" : "Status",
    "IsCommonBilling" : true,
    "RefNumber" : "RefNumber",
    "GUID" : "00000000-0000-0000-0000-000000000000",
    "ApprovedByUserID" : 1,
    "TotalInc" : 7.061401241503109,
    "IsAutoExtend" : true,
    "Details" : [ {
      "KeyName" : "KeyName",
      "ValueOptions" : [ "ValueOptions", "ValueOptions" ],
      "Description" : "Description",
      "FriendlyName" : "FriendlyName",
      "ValueType" : 3,
      "IsTriggerReconfigure" : true,
      "Value" : "Value",
      "IsReadOnly" : true
    }, {
      "KeyName" : "KeyName",
      "ValueOptions" : [ "ValueOptions", "ValueOptions" ],
      "Description" : "Description",
      "FriendlyName" : "FriendlyName",
      "ValueType" : 3,
      "IsTriggerReconfigure" : true,
      "Value" : "Value",
      "IsReadOnly" : true
    } ],
    "BillingStartDate" : "2000-01-23T04:56:07.000+00:00",
    "CustomerGUIDstring" : "CustomerGUIDstring",
    "ContractType" : "ContractType",
    "ParentContractID" : 6,
    "IsTerminated" : true,
    "SourceWarehouseName" : "SourceWarehouseName",
    "Schedules" : [ {
      "ScheduleType" : "ScheduleType",
      "ServiceAddress" : {
        "FullAddress" : "FullAddress",
        "IsDefaultDeliverTo" : true,
        "IsActive" : true,
        "LocationID" : 3,
        "Latitude" : 5.944895607614016,
        "GUIDstring" : "GUIDstring",
        "IsPostalAddress" : true,
        "AddressDescription" : "AddressDescription",
        "ID" : 6,
        "Notes" : "Notes",
        "IsDeliverTo" : true,
        "IsSelectedBilling" : true,
        "IsSelectedDelivery" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "City" : "City",
        "Longitude" : 6.704019297950036,
        "StreetAddress" : "StreetAddress",
        "IsMailTo" : true,
        "IsServiceTo" : true,
        "State" : "State",
        "IsDefaultServiceTo" : true,
        "IsOfficeOrShop" : true,
        "Country" : "Country",
        "IsSystem" : true,
        "AddressType" : 3,
        "PostCode" : "PostCode",
        "IsDefaultBilling" : true
      },
      "Description" : "Description",
      "IsActive" : true,
      "IsServiceSchedule" : true,
      "BillingConfig" : {
        "Recurrence" : 4,
        "DaysOfWeek" : "DaysOfWeek",
        "FrequencyType" : 1,
        "DayOfMonth" : 5,
        "BillingMode" : 7
      },
      "Name" : "Name",
      "IsRecurringSchedule" : true,
      "ContractTemplateScheduleID" : 7,
      "GUIDstring" : "GUIDstring",
      "StartDate" : "2000-01-23T04:56:07.000+00:00",
      "BillingAddress" : {
        "FullAddress" : "FullAddress",
        "IsDefaultDeliverTo" : true,
        "IsActive" : true,
        "LocationID" : 3,
        "Latitude" : 5.944895607614016,
        "GUIDstring" : "GUIDstring",
        "IsPostalAddress" : true,
        "AddressDescription" : "AddressDescription",
        "ID" : 6,
        "Notes" : "Notes",
        "IsDeliverTo" : true,
        "IsSelectedBilling" : true,
        "IsSelectedDelivery" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "City" : "City",
        "Longitude" : 6.704019297950036,
        "StreetAddress" : "StreetAddress",
        "IsMailTo" : true,
        "IsServiceTo" : true,
        "State" : "State",
        "IsDefaultServiceTo" : true,
        "IsOfficeOrShop" : true,
        "Country" : "Country",
        "IsSystem" : true,
        "AddressType" : 3,
        "PostCode" : "PostCode",
        "IsDefaultBilling" : true
      },
      "SalesOrderTemplate" : {
        "ContactCustomerName" : "ContactCustomerName",
        "TransDateString" : "TransDateString",
        "VendorTransDate" : "2000-01-23T04:56:07.000+00:00",
        "RefTransRefNumber" : "RefTransRefNumber",
        "Token" : "Token",
        "CustomerID" : 3,
        "POSTerminalShiftID" : 2,
        "IsSeparateLines" : true,
        "LastLineRowNumber" : 3,
        "POSDeviceID" : "POSDeviceID",
        "RefTransID" : 1,
        "WarehouseCode" : "WarehouseCode",
        "ShippingAddressID" : 0,
        "RepUserID" : 6,
        "IsSent" : true,
        "SyncLogs" : [ {
          "Status" : "Status",
          "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
          "AdaptorID" : 4,
          "LastImportDateTime_offset" : 2,
          "LastExportDateTime_offset" : 9,
          "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" : 0,
          "ID" : 7,
          "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
        }, {
          "Status" : "Status",
          "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
          "AdaptorID" : 4,
          "LastImportDateTime_offset" : 2,
          "LastExportDateTime_offset" : 9,
          "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" : 0,
          "ID" : 7,
          "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
        } ],
        "TotalPaid" : 0.2025324113236393,
        "Currency" : "Currency",
        "ID" : 6,
        "IsReadOnly" : true,
        "Status" : "Status",
        "VendorName" : "VendorName",
        "Messages" : [ {
          "IsSystemMessage" : true,
          "Message" : "Message",
          "IsActive" : true,
          "ToUserID" : 5,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "SentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "IsInbound" : true,
          "GUIDstring" : "GUIDstring",
          "ReceivedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "IsFromParent" : true,
          "FromUserID" : 3,
          "ReadDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "ID" : 2,
          "TransID" : 3
        }, {
          "IsSystemMessage" : true,
          "Message" : "Message",
          "IsActive" : true,
          "ToUserID" : 5,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "SentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "IsInbound" : true,
          "GUIDstring" : "GUIDstring",
          "ReceivedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "IsFromParent" : true,
          "FromUserID" : 3,
          "ReadDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "ID" : 2,
          "TransID" : 3
        } ],
        "VendorInvoiceRefNumber" : "VendorInvoiceRefNumber",
        "TotalLineCount" : 4,
        "DatTypeID" : 7,
        "TotalInc" : 0.4867146239815201,
        "BillCountry" : "BillCountry",
        "DiscountMode" : "DiscountMode",
        "ShipCustomerName" : "ShipCustomerName",
        "ContactLastName" : "ContactLastName",
        "BusinessContactID" : 4,
        "BSID" : "BSID",
        "AccountCustomerName" : "AccountCustomerName",
        "VendorRefNumber" : "VendorRefNumber",
        "BatchStatus" : "BatchStatus",
        "LinkedTrans" : [ {
          "Status" : "Status",
          "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
          "DatTypeString" : "DatTypeString",
          "ShortDatTypeString" : "ShortDatTypeString",
          "Description" : "Description",
          "Issues" : "Issues",
          "RefNumber" : "RefNumber",
          "AppliedAmount" : 8.782449469456207,
          "DatTypeID" : 5,
          "TotalInc" : 3.0269458094096646,
          "LineCount" : 8,
          "TransSubType" : "TransSubType",
          "QuantityCount" : 7.273019311111276,
          "GUIDstring" : "GUIDstring",
          "TotalEx" : 2.4669941706755685,
          "RecipientName" : "RecipientName",
          "ID" : 1
        }, {
          "Status" : "Status",
          "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
          "DatTypeString" : "DatTypeString",
          "ShortDatTypeString" : "ShortDatTypeString",
          "Description" : "Description",
          "Issues" : "Issues",
          "RefNumber" : "RefNumber",
          "AppliedAmount" : 8.782449469456207,
          "DatTypeID" : 5,
          "TotalInc" : 3.0269458094096646,
          "LineCount" : 8,
          "TransSubType" : "TransSubType",
          "QuantityCount" : 7.273019311111276,
          "GUIDstring" : "GUIDstring",
          "TotalEx" : 2.4669941706755685,
          "RecipientName" : "RecipientName",
          "ID" : 1
        } ],
        "AccountCustomerRefNumber" : "AccountCustomerRefNumber",
        "TerritoryName" : "TerritoryName",
        "IsProcessed" : true,
        "Description" : "Description",
        "Discount" : 7.88722683998926,
        "AvailableCreditString" : "AvailableCreditString",
        "CustomerBSID" : "CustomerBSID",
        "BillingAddressID" : 6,
        "ClaimRequestRefNumber" : "ClaimRequestRefNumber",
        "WasSentWhenUnlinked" : true,
        "DeliveryNote" : "DeliveryNote",
        "BillingAddress" : {
          "FullAddress" : "FullAddress",
          "IsDefaultDeliverTo" : true,
          "IsActive" : true,
          "LocationID" : 3,
          "Latitude" : 5.944895607614016,
          "GUIDstring" : "GUIDstring",
          "IsPostalAddress" : true,
          "AddressDescription" : "AddressDescription",
          "ID" : 6,
          "Notes" : "Notes",
          "IsDeliverTo" : true,
          "IsSelectedBilling" : true,
          "IsSelectedDelivery" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "City" : "City",
          "Longitude" : 6.704019297950036,
          "StreetAddress" : "StreetAddress",
          "IsMailTo" : true,
          "IsServiceTo" : true,
          "State" : "State",
          "IsDefaultServiceTo" : true,
          "IsOfficeOrShop" : true,
          "Country" : "Country",
          "IsSystem" : true,
          "AddressType" : 3,
          "PostCode" : "PostCode",
          "IsDefaultBilling" : true
        },
        "ContactPhone" : "ContactPhone",
        "VendorABN" : "VendorABN",
        "DisplayAddress" : "DisplayAddress",
        "CreatedByUserName" : "CreatedByUserName",
        "IsSentToUnlinked" : true,
        "IsCanDelete" : true,
        "ContactFirstName" : "ContactFirstName",
        "DeliveryMethod" : "DeliveryMethod",
        "AttachmentCount" : 7,
        "OriginalTotalInc" : 7.04836565559697,
        "VendorID" : 4,
        "ShipState" : "ShipState",
        "SentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "InternalNote" : "InternalNote",
        "AccountBalanceString" : "AccountBalanceString",
        "TotalEx" : 0.30134145536422907,
        "WarehouseBSID" : "WarehouseBSID",
        "TransDate" : "2000-01-23T04:56:07.000+00:00",
        "ShipCountry" : "ShipCountry",
        "TotalTaxString" : "TotalTaxString",
        "IsCanCancel" : true,
        "ShipContactPhone" : "ShipContactPhone",
        "IsLinkedToOtherParty" : true,
        "ShipLatitude" : 7.390706075830692,
        "ShipLongitude" : 1.0502890910539986,
        "WasSentWhenLinked" : true,
        "IsCreatedByOtherParty" : true,
        "RefSalesOrderRefNumber" : "RefSalesOrderRefNumber",
        "ShipStreetAddress" : "ShipStreetAddress",
        "TotalIncString" : "TotalIncString",
        "DeliveryDate" : "2000-01-23T04:56:07.000+00:00",
        "WarehouseID" : 7,
        "LineCount" : 6,
        "LinesWithUnmappedInventoryCount" : 4,
        "WarehouseName" : "WarehouseName",
        "GUIDstring" : "GUIDstring",
        "IsContractPriceTemplate" : true,
        "AvailableCredit" : 6.778324963048013,
        "BillPostCode" : "BillPostCode",
        "DueDateString" : "DueDateString",
        "CustomerRefNumber" : "CustomerRefNumber",
        "Version" : 1.284659006116532,
        "OriginalTotalEx" : 3.0576100241049344,
        "CreatedWith" : "CreatedWith",
        "TotalOwingString" : "TotalOwingString",
        "BillState" : "BillState",
        "AccountCustomerID" : 4,
        "ShipContactFirstName" : "ShipContactFirstName",
        "IsMessagesSendable" : true,
        "IsSendable" : true,
        "FinalisedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "RefNumber" : "RefNumber",
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "ShipPostCode" : "ShipPostCode",
        "IsMoreLinesToGet" : true,
        "RepUserName" : "RepUserName",
        "OriginalTotalTax" : 5.533258397034986,
        "CustomerGUIDstring" : "CustomerGUIDstring",
        "IsAccountCustomer" : true,
        "Balance" : 9.721723570087065,
        "BusinessID" : 7,
        "CreatedDateTime" : "2000-01-23T04:56:07.000+00:00",
        "Lines" : [ {
          "SellPriceInc" : 5.312489704336296,
          "FeeID" : 6,
          "TotalQuantityReceived" : 9.402167524121316,
          "AdjustedQuantityReceived" : 3.209082285545927,
          "InventoryID" : 8,
          "ShortDescription" : "ShortDescription",
          "AcquisitionWarehouseID" : 0,
          "FeeGUID" : "00000000-0000-0000-0000-000000000000",
          "SequenceNumber" : 9,
          "ID" : 9,
          "SellPriceTaxString" : "SellPriceTaxString",
          "InventoryGUIDstring" : "InventoryGUIDstring",
          "InventoryType" : "InventoryType",
          "DefaultThumbnailURL" : "DefaultThumbnailURL",
          "IsOnSpecial" : true,
          "MinOrderQuantity" : 8.251625748923757,
          "RefBarCode" : "RefBarCode",
          "IsShowOriginalPriceInReceipts" : true,
          "DatTypeID" : 0,
          "PricingMode" : "PricingMode",
          "Code" : "Code",
          "IsDiscontinued" : true,
          "LineTotalTaxString" : "LineTotalTaxString",
          "SupplierInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "EAN" : "EAN",
          "Barcode" : "Barcode",
          "IsAmendedByOtherParty" : true,
          "ReturnReason" : "ReturnReason",
          "DefaultImageURL" : "DefaultImageURL",
          "StandardSellPriceEx" : 3.502657762086401,
          "Description" : "Description",
          "ClaimReason" : "ClaimReason",
          "SellPriceTax" : 8.37823741034869,
          "QuantityPicked" : 5.7911894223693885,
          "CurrentSuppliersInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsTaxable" : true,
          "SellPriceExString" : "SellPriceExString",
          "QuantityInCartString" : "QuantityInCartString",
          "DeliveryMethod" : "DeliveryMethod",
          "SellPriceEx" : 5.299143560275359,
          "LineTotalInc" : 3.7814124730767915,
          "CommentFromOtherParty" : "CommentFromOtherParty",
          "QuantityOutofDate" : 7.726998920545485,
          "InventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsVariantMaster" : true,
          "LineTotalExString" : "LineTotalExString",
          "IsPriceRefresh" : true,
          "DiscountPercentage" : 5.974942028545841,
          "QuantityOrdered" : 1.0639121808530916,
          "IsCanUpdateInventoryOnMerge" : true,
          "QuantityOnBackOrder" : 8.28965939814297,
          "OrderTotalIncDesc" : "OrderTotalIncDesc",
          "AcquisitionMethod" : "AcquisitionMethod",
          "LabourRateID" : 4,
          "LineID" : 5,
          "RefInventoryBSID" : "RefInventoryBSID",
          "IsCreatedByOtherParty" : true,
          "WarehouseID" : 9,
          "GUIDstring" : "GUIDstring",
          "PostingInventoryCode" : "PostingInventoryCode",
          "ReturnInNumberOfWeeks" : 2.9409642974827896,
          "ExpectedBuyPriceEx" : 1.7045651386993,
          "CalculatedBuyPriceTax" : 4.4935252719377825,
          "AccountCode" : "AccountCode",
          "MaxOrderQuantity" : 6.073898085781152,
          "QuantityIncorrect" : 7.3718573971919445,
          "ClaimRequestLines" : [ {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          }, {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          } ],
          "QuantityCancelled" : 0.43431398824148815,
          "FeePercentage" : 7.933506881737151,
          "LineTotalIncString" : "LineTotalIncString",
          "StandardSellPriceInc" : 1.7325933120207193,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "UoMDescription" : "UoMDescription",
          "LineTotalEx" : 7.606863723092579,
          "IsRejected" : true,
          "ItemID" : 4,
          "FeeGUIDstring" : "FeeGUIDstring",
          "PriceDescription" : "PriceDescription",
          "LineTotalTax" : 3.111202833403195,
          "TaxType" : "TaxType",
          "PostingInventoryID" : 3,
          "CostPriceInc" : 9.183123594773994,
          "SellPriceIncString" : "SellPriceIncString",
          "QuantityClaimed" : 7.92839742024475,
          "QuantityRefunded" : 8.262795412896967,
          "PriceType" : "PriceType",
          "InventoryBSID" : "InventoryBSID",
          "Warehouse" : {
            "Description" : "Description",
            "IsActive" : true,
            "TotalNumberOfDistinctProducts" : 9,
            "Users" : [ {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            }, {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            } ],
            "Name" : "Name",
            "GUIDstring" : "GUIDstring",
            "Version" : 8.675064425986758,
            "SyncLogs" : [ {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            }, {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            } ],
            "WarehouseTypeID" : 0,
            "ID" : 4,
            "DefaultPOSCustomerName" : "DefaultPOSCustomerName",
            "MinimumStockHoldingValue" : 3.812761638325517,
            "IsDefault" : true,
            "DefaultPOSCustomerID" : 1,
            "TenantLocationName" : "TenantLocationName",
            "Code" : "Code",
            "TotalStockValue" : 1.2555055362323109,
            "RowNumber" : 3,
            "BSID" : "BSID",
            "MaximumStockHoldingValue" : 5.6644160867523485,
            "TenantLocationID" : 0,
            "Barcode" : "Barcode",
            "WarehouseType" : {
              "Description" : "Description",
              "WarehouseTypeID" : 6,
              "ID" : 4,
              "IsVirtual" : true,
              "Name" : "Name",
              "RefNumberPrefix" : "RefNumberPrefix"
            },
            "TotalSOH" : 1.3949519358941398,
            "IsSystem" : true,
            "CostCentreCode" : "CostCentreCode",
            "Location" : {
              "IsActive" : true,
              "TimeZoneName" : "TimeZoneName",
              "GUID" : "00000000-0000-0000-0000-000000000000",
              "EmailAddress" : "EmailAddress",
              "Name" : "Name",
              "LocationName" : "LocationName",
              "GUIDstring" : "GUIDstring",
              "Addresses" : [ {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              }, {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              } ],
              "UtcOffset" : 6,
              "IsVisibleToPublic" : true,
              "Contacts" : [ {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              }, {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              } ],
              "Phone" : "Phone",
              "IsSystem" : true,
              "ID" : 2,
              "Fax" : "Fax",
              "IsDefaultLocation" : true
            },
            "IsStockOpeningBalanceComplete" : true
          },
          "DeliveryMethodDescription" : "DeliveryMethodDescription",
          "CostPriceEx" : 0.4182561061793122,
          "IsActive" : true,
          "HasPriceBeenEdited" : true,
          "IsSpecialPrice" : true,
          "OrderTotalInc" : 4.459605034958679,
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "UoM" : "UoM",
          "IsPhysical" : true,
          "TaxRate" : 5.877124706116695,
          "AssetID" : 9,
          "LineType" : "LineType",
          "Comment" : "Comment",
          "RefInventoryCode" : "RefInventoryCode",
          "QuantityInCart" : 3.901545264248647,
          "Title" : "Title",
          "Quantity" : 1.8268702177058116,
          "CostPriceTax" : 8.761432466225475,
          "QuantityFaulty" : 9.785002165136461,
          "QuantityReceived" : 3.2841216543560217,
          "SKU" : "SKU",
          "CostPriceExString" : "CostPriceExString",
          "IsAssetItem" : true,
          "SupplierInventoryGUIDString" : "SupplierInventoryGUIDString"
        }, {
          "SellPriceInc" : 5.312489704336296,
          "FeeID" : 6,
          "TotalQuantityReceived" : 9.402167524121316,
          "AdjustedQuantityReceived" : 3.209082285545927,
          "InventoryID" : 8,
          "ShortDescription" : "ShortDescription",
          "AcquisitionWarehouseID" : 0,
          "FeeGUID" : "00000000-0000-0000-0000-000000000000",
          "SequenceNumber" : 9,
          "ID" : 9,
          "SellPriceTaxString" : "SellPriceTaxString",
          "InventoryGUIDstring" : "InventoryGUIDstring",
          "InventoryType" : "InventoryType",
          "DefaultThumbnailURL" : "DefaultThumbnailURL",
          "IsOnSpecial" : true,
          "MinOrderQuantity" : 8.251625748923757,
          "RefBarCode" : "RefBarCode",
          "IsShowOriginalPriceInReceipts" : true,
          "DatTypeID" : 0,
          "PricingMode" : "PricingMode",
          "Code" : "Code",
          "IsDiscontinued" : true,
          "LineTotalTaxString" : "LineTotalTaxString",
          "SupplierInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "EAN" : "EAN",
          "Barcode" : "Barcode",
          "IsAmendedByOtherParty" : true,
          "ReturnReason" : "ReturnReason",
          "DefaultImageURL" : "DefaultImageURL",
          "StandardSellPriceEx" : 3.502657762086401,
          "Description" : "Description",
          "ClaimReason" : "ClaimReason",
          "SellPriceTax" : 8.37823741034869,
          "QuantityPicked" : 5.7911894223693885,
          "CurrentSuppliersInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsTaxable" : true,
          "SellPriceExString" : "SellPriceExString",
          "QuantityInCartString" : "QuantityInCartString",
          "DeliveryMethod" : "DeliveryMethod",
          "SellPriceEx" : 5.299143560275359,
          "LineTotalInc" : 3.7814124730767915,
          "CommentFromOtherParty" : "CommentFromOtherParty",
          "QuantityOutofDate" : 7.726998920545485,
          "InventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsVariantMaster" : true,
          "LineTotalExString" : "LineTotalExString",
          "IsPriceRefresh" : true,
          "DiscountPercentage" : 5.974942028545841,
          "QuantityOrdered" : 1.0639121808530916,
          "IsCanUpdateInventoryOnMerge" : true,
          "QuantityOnBackOrder" : 8.28965939814297,
          "OrderTotalIncDesc" : "OrderTotalIncDesc",
          "AcquisitionMethod" : "AcquisitionMethod",
          "LabourRateID" : 4,
          "LineID" : 5,
          "RefInventoryBSID" : "RefInventoryBSID",
          "IsCreatedByOtherParty" : true,
          "WarehouseID" : 9,
          "GUIDstring" : "GUIDstring",
          "PostingInventoryCode" : "PostingInventoryCode",
          "ReturnInNumberOfWeeks" : 2.9409642974827896,
          "ExpectedBuyPriceEx" : 1.7045651386993,
          "CalculatedBuyPriceTax" : 4.4935252719377825,
          "AccountCode" : "AccountCode",
          "MaxOrderQuantity" : 6.073898085781152,
          "QuantityIncorrect" : 7.3718573971919445,
          "ClaimRequestLines" : [ {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          }, {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          } ],
          "QuantityCancelled" : 0.43431398824148815,
          "FeePercentage" : 7.933506881737151,
          "LineTotalIncString" : "LineTotalIncString",
          "StandardSellPriceInc" : 1.7325933120207193,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "UoMDescription" : "UoMDescription",
          "LineTotalEx" : 7.606863723092579,
          "IsRejected" : true,
          "ItemID" : 4,
          "FeeGUIDstring" : "FeeGUIDstring",
          "PriceDescription" : "PriceDescription",
          "LineTotalTax" : 3.111202833403195,
          "TaxType" : "TaxType",
          "PostingInventoryID" : 3,
          "CostPriceInc" : 9.183123594773994,
          "SellPriceIncString" : "SellPriceIncString",
          "QuantityClaimed" : 7.92839742024475,
          "QuantityRefunded" : 8.262795412896967,
          "PriceType" : "PriceType",
          "InventoryBSID" : "InventoryBSID",
          "Warehouse" : {
            "Description" : "Description",
            "IsActive" : true,
            "TotalNumberOfDistinctProducts" : 9,
            "Users" : [ {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            }, {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            } ],
            "Name" : "Name",
            "GUIDstring" : "GUIDstring",
            "Version" : 8.675064425986758,
            "SyncLogs" : [ {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            }, {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            } ],
            "WarehouseTypeID" : 0,
            "ID" : 4,
            "DefaultPOSCustomerName" : "DefaultPOSCustomerName",
            "MinimumStockHoldingValue" : 3.812761638325517,
            "IsDefault" : true,
            "DefaultPOSCustomerID" : 1,
            "TenantLocationName" : "TenantLocationName",
            "Code" : "Code",
            "TotalStockValue" : 1.2555055362323109,
            "RowNumber" : 3,
            "BSID" : "BSID",
            "MaximumStockHoldingValue" : 5.6644160867523485,
            "TenantLocationID" : 0,
            "Barcode" : "Barcode",
            "WarehouseType" : {
              "Description" : "Description",
              "WarehouseTypeID" : 6,
              "ID" : 4,
              "IsVirtual" : true,
              "Name" : "Name",
              "RefNumberPrefix" : "RefNumberPrefix"
            },
            "TotalSOH" : 1.3949519358941398,
            "IsSystem" : true,
            "CostCentreCode" : "CostCentreCode",
            "Location" : {
              "IsActive" : true,
              "TimeZoneName" : "TimeZoneName",
              "GUID" : "00000000-0000-0000-0000-000000000000",
              "EmailAddress" : "EmailAddress",
              "Name" : "Name",
              "LocationName" : "LocationName",
              "GUIDstring" : "GUIDstring",
              "Addresses" : [ {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              }, {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              } ],
              "UtcOffset" : 6,
              "IsVisibleToPublic" : true,
              "Contacts" : [ {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              }, {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              } ],
              "Phone" : "Phone",
              "IsSystem" : true,
              "ID" : 2,
              "Fax" : "Fax",
              "IsDefaultLocation" : true
            },
            "IsStockOpeningBalanceComplete" : true
          },
          "DeliveryMethodDescription" : "DeliveryMethodDescription",
          "CostPriceEx" : 0.4182561061793122,
          "IsActive" : true,
          "HasPriceBeenEdited" : true,
          "IsSpecialPrice" : true,
          "OrderTotalInc" : 4.459605034958679,
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "UoM" : "UoM",
          "IsPhysical" : true,
          "TaxRate" : 5.877124706116695,
          "AssetID" : 9,
          "LineType" : "LineType",
          "Comment" : "Comment",
          "RefInventoryCode" : "RefInventoryCode",
          "QuantityInCart" : 3.901545264248647,
          "Title" : "Title",
          "Quantity" : 1.8268702177058116,
          "CostPriceTax" : 8.761432466225475,
          "QuantityFaulty" : 9.785002165136461,
          "QuantityReceived" : 3.2841216543560217,
          "SKU" : "SKU",
          "CostPriceExString" : "CostPriceExString",
          "IsAssetItem" : true,
          "SupplierInventoryGUIDString" : "SupplierInventoryGUIDString"
        } ],
        "ExchangeRate" : 6.176386745020588,
        "RepEmailAddress" : "RepEmailAddress",
        "IsActive" : true,
        "TotalExString" : "TotalExString",
        "ShipContactLastName" : "ShipContactLastName",
        "BillLatitude" : 0.11859130807119977,
        "TransType" : "TransType",
        "ContractID" : 0,
        "Attachments" : [ {
          "AttachmentType" : "AttachmentType",
          "LineID" : 2,
          "IsActive" : true,
          "ThumbnailURI" : "ThumbnailURI",
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "IsImage" : true,
          "URI" : "URI",
          "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Caption" : "Caption",
          "GUIDstring" : "GUIDstring",
          "IsPDF" : true,
          "IsFromParent" : true,
          "ID" : 7,
          "AttachedByUserID" : 3,
          "MessageID" : 0
        }, {
          "AttachmentType" : "AttachmentType",
          "LineID" : 2,
          "IsActive" : true,
          "ThumbnailURI" : "ThumbnailURI",
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "IsImage" : true,
          "URI" : "URI",
          "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Caption" : "Caption",
          "GUIDstring" : "GUIDstring",
          "IsPDF" : true,
          "IsFromParent" : true,
          "ID" : 7,
          "AttachedByUserID" : 3,
          "MessageID" : 0
        } ],
        "QuantityCount" : 8.969578798196912,
        "TotalOwing" : 0.10263654006109402,
        "HasBeenAmended" : true,
        "AccountBalance" : 2.8841621266687802,
        "TotalTax" : 9.456612101333725,
        "RepLastName" : "RepLastName",
        "ExternalTerminalName" : "ExternalTerminalName",
        "CashPaymentRounding" : 4.1661834558007,
        "UseIncPrices" : true,
        "CustomerName" : "CustomerName",
        "DueDate" : "2000-01-23T04:56:07.000+00:00",
        "TerritoryID" : 6,
        "ShipContactEmailAddress" : "ShipContactEmailAddress",
        "ExternalNotes" : "ExternalNotes",
        "AcceptedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "ShipCity" : "ShipCity",
        "BillCity" : "BillCity",
        "BillStreetAddress" : "BillStreetAddress",
        "Contact" : {
          "BusinessName" : "BusinessName",
          "FirstName" : "FirstName",
          "IsActive" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
          "Birthday" : "2000-01-23T04:56:07.000+00:00",
          "Gender" : "Gender",
          "PositionOrOccupation" : "PositionOrOccupation",
          "IsIncludeInEmails" : true,
          "EmailAddress" : "EmailAddress",
          "ContactRole" : "ContactRole",
          "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
          "BusinessContactID" : 7,
          "GUIDstring" : "GUIDstring",
          "PhoneMobile" : "PhoneMobile",
          "IsPrimaryContact" : true,
          "Phone1" : "Phone1",
          "IsSystem" : true,
          "ID" : 4,
          "LastName" : "LastName",
          "BusinessID" : 1
        },
        "InvoiceType" : "InvoiceType",
        "IsIndividual" : true,
        "HasBeenAmendedByOtherParty" : true,
        "ReceivedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "RowNumber" : 6,
        "ContactEmailAddress" : "ContactEmailAddress",
        "InboxID" : 3,
        "BillLongitude" : 4.637509675190766,
        "ShippingAddress" : {
          "FullAddress" : "FullAddress",
          "IsDefaultDeliverTo" : true,
          "IsActive" : true,
          "LocationID" : 3,
          "Latitude" : 5.944895607614016,
          "GUIDstring" : "GUIDstring",
          "IsPostalAddress" : true,
          "AddressDescription" : "AddressDescription",
          "ID" : 6,
          "Notes" : "Notes",
          "IsDeliverTo" : true,
          "IsSelectedBilling" : true,
          "IsSelectedDelivery" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "City" : "City",
          "Longitude" : 6.704019297950036,
          "StreetAddress" : "StreetAddress",
          "IsMailTo" : true,
          "IsServiceTo" : true,
          "State" : "State",
          "IsDefaultServiceTo" : true,
          "IsOfficeOrShop" : true,
          "Country" : "Country",
          "IsSystem" : true,
          "AddressType" : 3,
          "PostCode" : "PostCode",
          "IsDefaultBilling" : true
        },
        "CreatedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "TotalPaidString" : "TotalPaidString",
        "CustomerRefTransRefNumber" : "CustomerRefTransRefNumber",
        "CostCentreCode" : "CostCentreCode",
        "VendorTransRefNumber" : "VendorTransRefNumber",
        "CreatedDateTime_offset" : 7,
        "RepFirstName" : "RepFirstName"
      },
      "EstValue" : 8.768153453040833,
      "NoOfItems" : 6.642953999458534,
      "ID" : 7,
      "IsReadOnly" : true,
      "IsBillable" : true,
      "Status" : "Status",
      "RefNumber" : "RefNumber",
      "DurationMonths" : 6,
      "ScheduleContact" : {
        "BusinessName" : "BusinessName",
        "FirstName" : "FirstName",
        "IsActive" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "Title" : "Title",
        "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
        "Birthday" : "2000-01-23T04:56:07.000+00:00",
        "Gender" : "Gender",
        "PositionOrOccupation" : "PositionOrOccupation",
        "IsIncludeInEmails" : true,
        "EmailAddress" : "EmailAddress",
        "ContactRole" : "ContactRole",
        "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
        "BusinessContactID" : 7,
        "GUIDstring" : "GUIDstring",
        "PhoneMobile" : "PhoneMobile",
        "IsPrimaryContact" : true,
        "Phone1" : "Phone1",
        "IsSystem" : true,
        "ID" : 4,
        "LastName" : "LastName",
        "BusinessID" : 1
      },
      "EndDate" : "2000-01-23T04:56:07.000+00:00",
      "BillingContact" : {
        "BusinessName" : "BusinessName",
        "FirstName" : "FirstName",
        "IsActive" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "Title" : "Title",
        "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
        "Birthday" : "2000-01-23T04:56:07.000+00:00",
        "Gender" : "Gender",
        "PositionOrOccupation" : "PositionOrOccupation",
        "IsIncludeInEmails" : true,
        "EmailAddress" : "EmailAddress",
        "ContactRole" : "ContactRole",
        "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
        "BusinessContactID" : 7,
        "GUIDstring" : "GUIDstring",
        "PhoneMobile" : "PhoneMobile",
        "IsPrimaryContact" : true,
        "Phone1" : "Phone1",
        "IsSystem" : true,
        "ID" : 4,
        "LastName" : "LastName",
        "BusinessID" : 1
      },
      "ScheduleConfig" : {
        "Recurrence" : 8,
        "DaysOfWeek" : "DaysOfWeek",
        "FrequencyType" : 6,
        "DayOfMonth" : 9
      },
      "NoOfLines" : 9.505836306729838,
      "BillingStartDate" : "2000-01-23T04:56:07.000+00:00",
      "CreatedDate" : "2000-01-23T04:56:07.000+00:00",
      "Location" : {
        "IsActive" : true,
        "TimeZoneName" : "TimeZoneName",
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "EmailAddress" : "EmailAddress",
        "Name" : "Name",
        "LocationName" : "LocationName",
        "GUIDstring" : "GUIDstring",
        "Addresses" : [ {
          "FullAddress" : "FullAddress",
          "IsDefaultDeliverTo" : true,
          "IsActive" : true,
          "LocationID" : 3,
          "Latitude" : 5.944895607614016,
          "GUIDstring" : "GUIDstring",
          "IsPostalAddress" : true,
          "AddressDescription" : "AddressDescription",
          "ID" : 6,
          "Notes" : "Notes",
          "IsDeliverTo" : true,
          "IsSelectedBilling" : true,
          "IsSelectedDelivery" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "City" : "City",
          "Longitude" : 6.704019297950036,
          "StreetAddress" : "StreetAddress",
          "IsMailTo" : true,
          "IsServiceTo" : true,
          "State" : "State",
          "IsDefaultServiceTo" : true,
          "IsOfficeOrShop" : true,
          "Country" : "Country",
          "IsSystem" : true,
          "AddressType" : 3,
          "PostCode" : "PostCode",
          "IsDefaultBilling" : true
        }, {
          "FullAddress" : "FullAddress",
          "IsDefaultDeliverTo" : true,
          "IsActive" : true,
          "LocationID" : 3,
          "Latitude" : 5.944895607614016,
          "GUIDstring" : "GUIDstring",
          "IsPostalAddress" : true,
          "AddressDescription" : "AddressDescription",
          "ID" : 6,
          "Notes" : "Notes",
          "IsDeliverTo" : true,
          "IsSelectedBilling" : true,
          "IsSelectedDelivery" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "City" : "City",
          "Longitude" : 6.704019297950036,
          "StreetAddress" : "StreetAddress",
          "IsMailTo" : true,
          "IsServiceTo" : true,
          "State" : "State",
          "IsDefaultServiceTo" : true,
          "IsOfficeOrShop" : true,
          "Country" : "Country",
          "IsSystem" : true,
          "AddressType" : 3,
          "PostCode" : "PostCode",
          "IsDefaultBilling" : true
        } ],
        "UtcOffset" : 6,
        "IsVisibleToPublic" : true,
        "Contacts" : [ {
          "BusinessName" : "BusinessName",
          "FirstName" : "FirstName",
          "IsActive" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
          "Birthday" : "2000-01-23T04:56:07.000+00:00",
          "Gender" : "Gender",
          "PositionOrOccupation" : "PositionOrOccupation",
          "IsIncludeInEmails" : true,
          "EmailAddress" : "EmailAddress",
          "ContactRole" : "ContactRole",
          "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
          "BusinessContactID" : 7,
          "GUIDstring" : "GUIDstring",
          "PhoneMobile" : "PhoneMobile",
          "IsPrimaryContact" : true,
          "Phone1" : "Phone1",
          "IsSystem" : true,
          "ID" : 4,
          "LastName" : "LastName",
          "BusinessID" : 1
        }, {
          "BusinessName" : "BusinessName",
          "FirstName" : "FirstName",
          "IsActive" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
          "Birthday" : "2000-01-23T04:56:07.000+00:00",
          "Gender" : "Gender",
          "PositionOrOccupation" : "PositionOrOccupation",
          "IsIncludeInEmails" : true,
          "EmailAddress" : "EmailAddress",
          "ContactRole" : "ContactRole",
          "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
          "BusinessContactID" : 7,
          "GUIDstring" : "GUIDstring",
          "PhoneMobile" : "PhoneMobile",
          "IsPrimaryContact" : true,
          "Phone1" : "Phone1",
          "IsSystem" : true,
          "ID" : 4,
          "LastName" : "LastName",
          "BusinessID" : 1
        } ],
        "Phone" : "Phone",
        "IsSystem" : true,
        "ID" : 2,
        "Fax" : "Fax",
        "IsDefaultLocation" : true
      }
    }, {
      "ScheduleType" : "ScheduleType",
      "ServiceAddress" : {
        "FullAddress" : "FullAddress",
        "IsDefaultDeliverTo" : true,
        "IsActive" : true,
        "LocationID" : 3,
        "Latitude" : 5.944895607614016,
        "GUIDstring" : "GUIDstring",
        "IsPostalAddress" : true,
        "AddressDescription" : "AddressDescription",
        "ID" : 6,
        "Notes" : "Notes",
        "IsDeliverTo" : true,
        "IsSelectedBilling" : true,
        "IsSelectedDelivery" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "City" : "City",
        "Longitude" : 6.704019297950036,
        "StreetAddress" : "StreetAddress",
        "IsMailTo" : true,
        "IsServiceTo" : true,
        "State" : "State",
        "IsDefaultServiceTo" : true,
        "IsOfficeOrShop" : true,
        "Country" : "Country",
        "IsSystem" : true,
        "AddressType" : 3,
        "PostCode" : "PostCode",
        "IsDefaultBilling" : true
      },
      "Description" : "Description",
      "IsActive" : true,
      "IsServiceSchedule" : true,
      "BillingConfig" : {
        "Recurrence" : 4,
        "DaysOfWeek" : "DaysOfWeek",
        "FrequencyType" : 1,
        "DayOfMonth" : 5,
        "BillingMode" : 7
      },
      "Name" : "Name",
      "IsRecurringSchedule" : true,
      "ContractTemplateScheduleID" : 7,
      "GUIDstring" : "GUIDstring",
      "StartDate" : "2000-01-23T04:56:07.000+00:00",
      "BillingAddress" : {
        "FullAddress" : "FullAddress",
        "IsDefaultDeliverTo" : true,
        "IsActive" : true,
        "LocationID" : 3,
        "Latitude" : 5.944895607614016,
        "GUIDstring" : "GUIDstring",
        "IsPostalAddress" : true,
        "AddressDescription" : "AddressDescription",
        "ID" : 6,
        "Notes" : "Notes",
        "IsDeliverTo" : true,
        "IsSelectedBilling" : true,
        "IsSelectedDelivery" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "City" : "City",
        "Longitude" : 6.704019297950036,
        "StreetAddress" : "StreetAddress",
        "IsMailTo" : true,
        "IsServiceTo" : true,
        "State" : "State",
        "IsDefaultServiceTo" : true,
        "IsOfficeOrShop" : true,
        "Country" : "Country",
        "IsSystem" : true,
        "AddressType" : 3,
        "PostCode" : "PostCode",
        "IsDefaultBilling" : true
      },
      "SalesOrderTemplate" : {
        "ContactCustomerName" : "ContactCustomerName",
        "TransDateString" : "TransDateString",
        "VendorTransDate" : "2000-01-23T04:56:07.000+00:00",
        "RefTransRefNumber" : "RefTransRefNumber",
        "Token" : "Token",
        "CustomerID" : 3,
        "POSTerminalShiftID" : 2,
        "IsSeparateLines" : true,
        "LastLineRowNumber" : 3,
        "POSDeviceID" : "POSDeviceID",
        "RefTransID" : 1,
        "WarehouseCode" : "WarehouseCode",
        "ShippingAddressID" : 0,
        "RepUserID" : 6,
        "IsSent" : true,
        "SyncLogs" : [ {
          "Status" : "Status",
          "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
          "AdaptorID" : 4,
          "LastImportDateTime_offset" : 2,
          "LastExportDateTime_offset" : 9,
          "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" : 0,
          "ID" : 7,
          "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
        }, {
          "Status" : "Status",
          "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
          "AdaptorID" : 4,
          "LastImportDateTime_offset" : 2,
          "LastExportDateTime_offset" : 9,
          "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" : 0,
          "ID" : 7,
          "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
        } ],
        "TotalPaid" : 0.2025324113236393,
        "Currency" : "Currency",
        "ID" : 6,
        "IsReadOnly" : true,
        "Status" : "Status",
        "VendorName" : "VendorName",
        "Messages" : [ {
          "IsSystemMessage" : true,
          "Message" : "Message",
          "IsActive" : true,
          "ToUserID" : 5,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "SentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "IsInbound" : true,
          "GUIDstring" : "GUIDstring",
          "ReceivedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "IsFromParent" : true,
          "FromUserID" : 3,
          "ReadDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "ID" : 2,
          "TransID" : 3
        }, {
          "IsSystemMessage" : true,
          "Message" : "Message",
          "IsActive" : true,
          "ToUserID" : 5,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "SentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "IsInbound" : true,
          "GUIDstring" : "GUIDstring",
          "ReceivedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "IsFromParent" : true,
          "FromUserID" : 3,
          "ReadDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "ID" : 2,
          "TransID" : 3
        } ],
        "VendorInvoiceRefNumber" : "VendorInvoiceRefNumber",
        "TotalLineCount" : 4,
        "DatTypeID" : 7,
        "TotalInc" : 0.4867146239815201,
        "BillCountry" : "BillCountry",
        "DiscountMode" : "DiscountMode",
        "ShipCustomerName" : "ShipCustomerName",
        "ContactLastName" : "ContactLastName",
        "BusinessContactID" : 4,
        "BSID" : "BSID",
        "AccountCustomerName" : "AccountCustomerName",
        "VendorRefNumber" : "VendorRefNumber",
        "BatchStatus" : "BatchStatus",
        "LinkedTrans" : [ {
          "Status" : "Status",
          "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
          "DatTypeString" : "DatTypeString",
          "ShortDatTypeString" : "ShortDatTypeString",
          "Description" : "Description",
          "Issues" : "Issues",
          "RefNumber" : "RefNumber",
          "AppliedAmount" : 8.782449469456207,
          "DatTypeID" : 5,
          "TotalInc" : 3.0269458094096646,
          "LineCount" : 8,
          "TransSubType" : "TransSubType",
          "QuantityCount" : 7.273019311111276,
          "GUIDstring" : "GUIDstring",
          "TotalEx" : 2.4669941706755685,
          "RecipientName" : "RecipientName",
          "ID" : 1
        }, {
          "Status" : "Status",
          "AppliedDate" : "2000-01-23T04:56:07.000+00:00",
          "DatTypeString" : "DatTypeString",
          "ShortDatTypeString" : "ShortDatTypeString",
          "Description" : "Description",
          "Issues" : "Issues",
          "RefNumber" : "RefNumber",
          "AppliedAmount" : 8.782449469456207,
          "DatTypeID" : 5,
          "TotalInc" : 3.0269458094096646,
          "LineCount" : 8,
          "TransSubType" : "TransSubType",
          "QuantityCount" : 7.273019311111276,
          "GUIDstring" : "GUIDstring",
          "TotalEx" : 2.4669941706755685,
          "RecipientName" : "RecipientName",
          "ID" : 1
        } ],
        "AccountCustomerRefNumber" : "AccountCustomerRefNumber",
        "TerritoryName" : "TerritoryName",
        "IsProcessed" : true,
        "Description" : "Description",
        "Discount" : 7.88722683998926,
        "AvailableCreditString" : "AvailableCreditString",
        "CustomerBSID" : "CustomerBSID",
        "BillingAddressID" : 6,
        "ClaimRequestRefNumber" : "ClaimRequestRefNumber",
        "WasSentWhenUnlinked" : true,
        "DeliveryNote" : "DeliveryNote",
        "BillingAddress" : {
          "FullAddress" : "FullAddress",
          "IsDefaultDeliverTo" : true,
          "IsActive" : true,
          "LocationID" : 3,
          "Latitude" : 5.944895607614016,
          "GUIDstring" : "GUIDstring",
          "IsPostalAddress" : true,
          "AddressDescription" : "AddressDescription",
          "ID" : 6,
          "Notes" : "Notes",
          "IsDeliverTo" : true,
          "IsSelectedBilling" : true,
          "IsSelectedDelivery" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "City" : "City",
          "Longitude" : 6.704019297950036,
          "StreetAddress" : "StreetAddress",
          "IsMailTo" : true,
          "IsServiceTo" : true,
          "State" : "State",
          "IsDefaultServiceTo" : true,
          "IsOfficeOrShop" : true,
          "Country" : "Country",
          "IsSystem" : true,
          "AddressType" : 3,
          "PostCode" : "PostCode",
          "IsDefaultBilling" : true
        },
        "ContactPhone" : "ContactPhone",
        "VendorABN" : "VendorABN",
        "DisplayAddress" : "DisplayAddress",
        "CreatedByUserName" : "CreatedByUserName",
        "IsSentToUnlinked" : true,
        "IsCanDelete" : true,
        "ContactFirstName" : "ContactFirstName",
        "DeliveryMethod" : "DeliveryMethod",
        "AttachmentCount" : 7,
        "OriginalTotalInc" : 7.04836565559697,
        "VendorID" : 4,
        "ShipState" : "ShipState",
        "SentDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "InternalNote" : "InternalNote",
        "AccountBalanceString" : "AccountBalanceString",
        "TotalEx" : 0.30134145536422907,
        "WarehouseBSID" : "WarehouseBSID",
        "TransDate" : "2000-01-23T04:56:07.000+00:00",
        "ShipCountry" : "ShipCountry",
        "TotalTaxString" : "TotalTaxString",
        "IsCanCancel" : true,
        "ShipContactPhone" : "ShipContactPhone",
        "IsLinkedToOtherParty" : true,
        "ShipLatitude" : 7.390706075830692,
        "ShipLongitude" : 1.0502890910539986,
        "WasSentWhenLinked" : true,
        "IsCreatedByOtherParty" : true,
        "RefSalesOrderRefNumber" : "RefSalesOrderRefNumber",
        "ShipStreetAddress" : "ShipStreetAddress",
        "TotalIncString" : "TotalIncString",
        "DeliveryDate" : "2000-01-23T04:56:07.000+00:00",
        "WarehouseID" : 7,
        "LineCount" : 6,
        "LinesWithUnmappedInventoryCount" : 4,
        "WarehouseName" : "WarehouseName",
        "GUIDstring" : "GUIDstring",
        "IsContractPriceTemplate" : true,
        "AvailableCredit" : 6.778324963048013,
        "BillPostCode" : "BillPostCode",
        "DueDateString" : "DueDateString",
        "CustomerRefNumber" : "CustomerRefNumber",
        "Version" : 1.284659006116532,
        "OriginalTotalEx" : 3.0576100241049344,
        "CreatedWith" : "CreatedWith",
        "TotalOwingString" : "TotalOwingString",
        "BillState" : "BillState",
        "AccountCustomerID" : 4,
        "ShipContactFirstName" : "ShipContactFirstName",
        "IsMessagesSendable" : true,
        "IsSendable" : true,
        "FinalisedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "RefNumber" : "RefNumber",
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "ShipPostCode" : "ShipPostCode",
        "IsMoreLinesToGet" : true,
        "RepUserName" : "RepUserName",
        "OriginalTotalTax" : 5.533258397034986,
        "CustomerGUIDstring" : "CustomerGUIDstring",
        "IsAccountCustomer" : true,
        "Balance" : 9.721723570087065,
        "BusinessID" : 7,
        "CreatedDateTime" : "2000-01-23T04:56:07.000+00:00",
        "Lines" : [ {
          "SellPriceInc" : 5.312489704336296,
          "FeeID" : 6,
          "TotalQuantityReceived" : 9.402167524121316,
          "AdjustedQuantityReceived" : 3.209082285545927,
          "InventoryID" : 8,
          "ShortDescription" : "ShortDescription",
          "AcquisitionWarehouseID" : 0,
          "FeeGUID" : "00000000-0000-0000-0000-000000000000",
          "SequenceNumber" : 9,
          "ID" : 9,
          "SellPriceTaxString" : "SellPriceTaxString",
          "InventoryGUIDstring" : "InventoryGUIDstring",
          "InventoryType" : "InventoryType",
          "DefaultThumbnailURL" : "DefaultThumbnailURL",
          "IsOnSpecial" : true,
          "MinOrderQuantity" : 8.251625748923757,
          "RefBarCode" : "RefBarCode",
          "IsShowOriginalPriceInReceipts" : true,
          "DatTypeID" : 0,
          "PricingMode" : "PricingMode",
          "Code" : "Code",
          "IsDiscontinued" : true,
          "LineTotalTaxString" : "LineTotalTaxString",
          "SupplierInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "EAN" : "EAN",
          "Barcode" : "Barcode",
          "IsAmendedByOtherParty" : true,
          "ReturnReason" : "ReturnReason",
          "DefaultImageURL" : "DefaultImageURL",
          "StandardSellPriceEx" : 3.502657762086401,
          "Description" : "Description",
          "ClaimReason" : "ClaimReason",
          "SellPriceTax" : 8.37823741034869,
          "QuantityPicked" : 5.7911894223693885,
          "CurrentSuppliersInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsTaxable" : true,
          "SellPriceExString" : "SellPriceExString",
          "QuantityInCartString" : "QuantityInCartString",
          "DeliveryMethod" : "DeliveryMethod",
          "SellPriceEx" : 5.299143560275359,
          "LineTotalInc" : 3.7814124730767915,
          "CommentFromOtherParty" : "CommentFromOtherParty",
          "QuantityOutofDate" : 7.726998920545485,
          "InventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsVariantMaster" : true,
          "LineTotalExString" : "LineTotalExString",
          "IsPriceRefresh" : true,
          "DiscountPercentage" : 5.974942028545841,
          "QuantityOrdered" : 1.0639121808530916,
          "IsCanUpdateInventoryOnMerge" : true,
          "QuantityOnBackOrder" : 8.28965939814297,
          "OrderTotalIncDesc" : "OrderTotalIncDesc",
          "AcquisitionMethod" : "AcquisitionMethod",
          "LabourRateID" : 4,
          "LineID" : 5,
          "RefInventoryBSID" : "RefInventoryBSID",
          "IsCreatedByOtherParty" : true,
          "WarehouseID" : 9,
          "GUIDstring" : "GUIDstring",
          "PostingInventoryCode" : "PostingInventoryCode",
          "ReturnInNumberOfWeeks" : 2.9409642974827896,
          "ExpectedBuyPriceEx" : 1.7045651386993,
          "CalculatedBuyPriceTax" : 4.4935252719377825,
          "AccountCode" : "AccountCode",
          "MaxOrderQuantity" : 6.073898085781152,
          "QuantityIncorrect" : 7.3718573971919445,
          "ClaimRequestLines" : [ {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          }, {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          } ],
          "QuantityCancelled" : 0.43431398824148815,
          "FeePercentage" : 7.933506881737151,
          "LineTotalIncString" : "LineTotalIncString",
          "StandardSellPriceInc" : 1.7325933120207193,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "UoMDescription" : "UoMDescription",
          "LineTotalEx" : 7.606863723092579,
          "IsRejected" : true,
          "ItemID" : 4,
          "FeeGUIDstring" : "FeeGUIDstring",
          "PriceDescription" : "PriceDescription",
          "LineTotalTax" : 3.111202833403195,
          "TaxType" : "TaxType",
          "PostingInventoryID" : 3,
          "CostPriceInc" : 9.183123594773994,
          "SellPriceIncString" : "SellPriceIncString",
          "QuantityClaimed" : 7.92839742024475,
          "QuantityRefunded" : 8.262795412896967,
          "PriceType" : "PriceType",
          "InventoryBSID" : "InventoryBSID",
          "Warehouse" : {
            "Description" : "Description",
            "IsActive" : true,
            "TotalNumberOfDistinctProducts" : 9,
            "Users" : [ {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            }, {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            } ],
            "Name" : "Name",
            "GUIDstring" : "GUIDstring",
            "Version" : 8.675064425986758,
            "SyncLogs" : [ {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            }, {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            } ],
            "WarehouseTypeID" : 0,
            "ID" : 4,
            "DefaultPOSCustomerName" : "DefaultPOSCustomerName",
            "MinimumStockHoldingValue" : 3.812761638325517,
            "IsDefault" : true,
            "DefaultPOSCustomerID" : 1,
            "TenantLocationName" : "TenantLocationName",
            "Code" : "Code",
            "TotalStockValue" : 1.2555055362323109,
            "RowNumber" : 3,
            "BSID" : "BSID",
            "MaximumStockHoldingValue" : 5.6644160867523485,
            "TenantLocationID" : 0,
            "Barcode" : "Barcode",
            "WarehouseType" : {
              "Description" : "Description",
              "WarehouseTypeID" : 6,
              "ID" : 4,
              "IsVirtual" : true,
              "Name" : "Name",
              "RefNumberPrefix" : "RefNumberPrefix"
            },
            "TotalSOH" : 1.3949519358941398,
            "IsSystem" : true,
            "CostCentreCode" : "CostCentreCode",
            "Location" : {
              "IsActive" : true,
              "TimeZoneName" : "TimeZoneName",
              "GUID" : "00000000-0000-0000-0000-000000000000",
              "EmailAddress" : "EmailAddress",
              "Name" : "Name",
              "LocationName" : "LocationName",
              "GUIDstring" : "GUIDstring",
              "Addresses" : [ {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              }, {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              } ],
              "UtcOffset" : 6,
              "IsVisibleToPublic" : true,
              "Contacts" : [ {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              }, {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              } ],
              "Phone" : "Phone",
              "IsSystem" : true,
              "ID" : 2,
              "Fax" : "Fax",
              "IsDefaultLocation" : true
            },
            "IsStockOpeningBalanceComplete" : true
          },
          "DeliveryMethodDescription" : "DeliveryMethodDescription",
          "CostPriceEx" : 0.4182561061793122,
          "IsActive" : true,
          "HasPriceBeenEdited" : true,
          "IsSpecialPrice" : true,
          "OrderTotalInc" : 4.459605034958679,
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "UoM" : "UoM",
          "IsPhysical" : true,
          "TaxRate" : 5.877124706116695,
          "AssetID" : 9,
          "LineType" : "LineType",
          "Comment" : "Comment",
          "RefInventoryCode" : "RefInventoryCode",
          "QuantityInCart" : 3.901545264248647,
          "Title" : "Title",
          "Quantity" : 1.8268702177058116,
          "CostPriceTax" : 8.761432466225475,
          "QuantityFaulty" : 9.785002165136461,
          "QuantityReceived" : 3.2841216543560217,
          "SKU" : "SKU",
          "CostPriceExString" : "CostPriceExString",
          "IsAssetItem" : true,
          "SupplierInventoryGUIDString" : "SupplierInventoryGUIDString"
        }, {
          "SellPriceInc" : 5.312489704336296,
          "FeeID" : 6,
          "TotalQuantityReceived" : 9.402167524121316,
          "AdjustedQuantityReceived" : 3.209082285545927,
          "InventoryID" : 8,
          "ShortDescription" : "ShortDescription",
          "AcquisitionWarehouseID" : 0,
          "FeeGUID" : "00000000-0000-0000-0000-000000000000",
          "SequenceNumber" : 9,
          "ID" : 9,
          "SellPriceTaxString" : "SellPriceTaxString",
          "InventoryGUIDstring" : "InventoryGUIDstring",
          "InventoryType" : "InventoryType",
          "DefaultThumbnailURL" : "DefaultThumbnailURL",
          "IsOnSpecial" : true,
          "MinOrderQuantity" : 8.251625748923757,
          "RefBarCode" : "RefBarCode",
          "IsShowOriginalPriceInReceipts" : true,
          "DatTypeID" : 0,
          "PricingMode" : "PricingMode",
          "Code" : "Code",
          "IsDiscontinued" : true,
          "LineTotalTaxString" : "LineTotalTaxString",
          "SupplierInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "EAN" : "EAN",
          "Barcode" : "Barcode",
          "IsAmendedByOtherParty" : true,
          "ReturnReason" : "ReturnReason",
          "DefaultImageURL" : "DefaultImageURL",
          "StandardSellPriceEx" : 3.502657762086401,
          "Description" : "Description",
          "ClaimReason" : "ClaimReason",
          "SellPriceTax" : 8.37823741034869,
          "QuantityPicked" : 5.7911894223693885,
          "CurrentSuppliersInventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsTaxable" : true,
          "SellPriceExString" : "SellPriceExString",
          "QuantityInCartString" : "QuantityInCartString",
          "DeliveryMethod" : "DeliveryMethod",
          "SellPriceEx" : 5.299143560275359,
          "LineTotalInc" : 3.7814124730767915,
          "CommentFromOtherParty" : "CommentFromOtherParty",
          "QuantityOutofDate" : 7.726998920545485,
          "InventoryGUID" : "00000000-0000-0000-0000-000000000000",
          "IsVariantMaster" : true,
          "LineTotalExString" : "LineTotalExString",
          "IsPriceRefresh" : true,
          "DiscountPercentage" : 5.974942028545841,
          "QuantityOrdered" : 1.0639121808530916,
          "IsCanUpdateInventoryOnMerge" : true,
          "QuantityOnBackOrder" : 8.28965939814297,
          "OrderTotalIncDesc" : "OrderTotalIncDesc",
          "AcquisitionMethod" : "AcquisitionMethod",
          "LabourRateID" : 4,
          "LineID" : 5,
          "RefInventoryBSID" : "RefInventoryBSID",
          "IsCreatedByOtherParty" : true,
          "WarehouseID" : 9,
          "GUIDstring" : "GUIDstring",
          "PostingInventoryCode" : "PostingInventoryCode",
          "ReturnInNumberOfWeeks" : 2.9409642974827896,
          "ExpectedBuyPriceEx" : 1.7045651386993,
          "CalculatedBuyPriceTax" : 4.4935252719377825,
          "AccountCode" : "AccountCode",
          "MaxOrderQuantity" : 6.073898085781152,
          "QuantityIncorrect" : 7.3718573971919445,
          "ClaimRequestLines" : [ {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          }, {
            "Comment" : "Comment",
            "ClaimRequestLineID" : 9,
            "SellPriceEx" : 8.276461147928103,
            "LineTotalInc" : 2.058822123984536,
            "SellPriceInc" : 6.458262756685686,
            "IsActive" : true,
            "Quantity" : 4.010300976654761,
            "IsReturnToStock" : true,
            "LineTotalEx" : 8.910869026866926,
            "WarehouseID" : 0,
            "WarehouseName" : "WarehouseName",
            "ClaimRequestID" : 2,
            "ClaimRequestStatus" : "ClaimRequestStatus",
            "LineTotalTax" : 6.4280627569296165,
            "SellPriceTax" : 4.141296055235948,
            "TransDate" : "2000-01-23T04:56:07.000+00:00",
            "InvoiceQuantity" : 2.9679475177256287,
            "ClaimableQuantity" : 0.7012260588964747,
            "ClaimedQuantity" : 5.747795090145878
          } ],
          "QuantityCancelled" : 0.43431398824148815,
          "FeePercentage" : 7.933506881737151,
          "LineTotalIncString" : "LineTotalIncString",
          "StandardSellPriceInc" : 1.7325933120207193,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "UoMDescription" : "UoMDescription",
          "LineTotalEx" : 7.606863723092579,
          "IsRejected" : true,
          "ItemID" : 4,
          "FeeGUIDstring" : "FeeGUIDstring",
          "PriceDescription" : "PriceDescription",
          "LineTotalTax" : 3.111202833403195,
          "TaxType" : "TaxType",
          "PostingInventoryID" : 3,
          "CostPriceInc" : 9.183123594773994,
          "SellPriceIncString" : "SellPriceIncString",
          "QuantityClaimed" : 7.92839742024475,
          "QuantityRefunded" : 8.262795412896967,
          "PriceType" : "PriceType",
          "InventoryBSID" : "InventoryBSID",
          "Warehouse" : {
            "Description" : "Description",
            "IsActive" : true,
            "TotalNumberOfDistinctProducts" : 9,
            "Users" : [ {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            }, {
              "FirstName" : "FirstName",
              "IsActive" : true,
              "PositionOrOccupation" : "PositionOrOccupation",
              "EmailAddress" : "EmailAddress",
              "GUIDstring" : "GUIDstring",
              "PhoneMobile" : "PhoneMobile",
              "IsPrimaryContact" : true,
              "Phone1" : "Phone1",
              "BSID" : "BSID",
              "IsEmployee" : true,
              "CreatedWith" : "CreatedWith",
              "ID" : 4,
              "LastName" : "LastName"
            } ],
            "Name" : "Name",
            "GUIDstring" : "GUIDstring",
            "Version" : 8.675064425986758,
            "SyncLogs" : [ {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            }, {
              "Status" : "Status",
              "LastImportDateTime" : "2000-01-23T04:56:07.000+00:00",
              "AdaptorID" : 4,
              "LastImportDateTime_offset" : 2,
              "LastExportDateTime_offset" : 9,
              "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" : 0,
              "ID" : 7,
              "LastImportDateTime_utc" : "2000-01-23T04:56:07.000+00:00"
            } ],
            "WarehouseTypeID" : 0,
            "ID" : 4,
            "DefaultPOSCustomerName" : "DefaultPOSCustomerName",
            "MinimumStockHoldingValue" : 3.812761638325517,
            "IsDefault" : true,
            "DefaultPOSCustomerID" : 1,
            "TenantLocationName" : "TenantLocationName",
            "Code" : "Code",
            "TotalStockValue" : 1.2555055362323109,
            "RowNumber" : 3,
            "BSID" : "BSID",
            "MaximumStockHoldingValue" : 5.6644160867523485,
            "TenantLocationID" : 0,
            "Barcode" : "Barcode",
            "WarehouseType" : {
              "Description" : "Description",
              "WarehouseTypeID" : 6,
              "ID" : 4,
              "IsVirtual" : true,
              "Name" : "Name",
              "RefNumberPrefix" : "RefNumberPrefix"
            },
            "TotalSOH" : 1.3949519358941398,
            "IsSystem" : true,
            "CostCentreCode" : "CostCentreCode",
            "Location" : {
              "IsActive" : true,
              "TimeZoneName" : "TimeZoneName",
              "GUID" : "00000000-0000-0000-0000-000000000000",
              "EmailAddress" : "EmailAddress",
              "Name" : "Name",
              "LocationName" : "LocationName",
              "GUIDstring" : "GUIDstring",
              "Addresses" : [ {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              }, {
                "FullAddress" : "FullAddress",
                "IsDefaultDeliverTo" : true,
                "IsActive" : true,
                "LocationID" : 3,
                "Latitude" : 5.944895607614016,
                "GUIDstring" : "GUIDstring",
                "IsPostalAddress" : true,
                "AddressDescription" : "AddressDescription",
                "ID" : 6,
                "Notes" : "Notes",
                "IsDeliverTo" : true,
                "IsSelectedBilling" : true,
                "IsSelectedDelivery" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "City" : "City",
                "Longitude" : 6.704019297950036,
                "StreetAddress" : "StreetAddress",
                "IsMailTo" : true,
                "IsServiceTo" : true,
                "State" : "State",
                "IsDefaultServiceTo" : true,
                "IsOfficeOrShop" : true,
                "Country" : "Country",
                "IsSystem" : true,
                "AddressType" : 3,
                "PostCode" : "PostCode",
                "IsDefaultBilling" : true
              } ],
              "UtcOffset" : 6,
              "IsVisibleToPublic" : true,
              "Contacts" : [ {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              }, {
                "BusinessName" : "BusinessName",
                "FirstName" : "FirstName",
                "IsActive" : true,
                "GUID" : "00000000-0000-0000-0000-000000000000",
                "Title" : "Title",
                "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
                "Birthday" : "2000-01-23T04:56:07.000+00:00",
                "Gender" : "Gender",
                "PositionOrOccupation" : "PositionOrOccupation",
                "IsIncludeInEmails" : true,
                "EmailAddress" : "EmailAddress",
                "ContactRole" : "ContactRole",
                "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
                "BusinessContactID" : 7,
                "GUIDstring" : "GUIDstring",
                "PhoneMobile" : "PhoneMobile",
                "IsPrimaryContact" : true,
                "Phone1" : "Phone1",
                "IsSystem" : true,
                "ID" : 4,
                "LastName" : "LastName",
                "BusinessID" : 1
              } ],
              "Phone" : "Phone",
              "IsSystem" : true,
              "ID" : 2,
              "Fax" : "Fax",
              "IsDefaultLocation" : true
            },
            "IsStockOpeningBalanceComplete" : true
          },
          "DeliveryMethodDescription" : "DeliveryMethodDescription",
          "CostPriceEx" : 0.4182561061793122,
          "IsActive" : true,
          "HasPriceBeenEdited" : true,
          "IsSpecialPrice" : true,
          "OrderTotalInc" : 4.459605034958679,
          "Attachments" : [ {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          }, {
            "AttachmentType" : "AttachmentType",
            "LineID" : 2,
            "IsActive" : true,
            "ThumbnailURI" : "ThumbnailURI",
            "GUID" : "00000000-0000-0000-0000-000000000000",
            "Title" : "Title",
            "IsImage" : true,
            "URI" : "URI",
            "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
            "Caption" : "Caption",
            "GUIDstring" : "GUIDstring",
            "IsPDF" : true,
            "IsFromParent" : true,
            "ID" : 7,
            "AttachedByUserID" : 3,
            "MessageID" : 0
          } ],
          "UoM" : "UoM",
          "IsPhysical" : true,
          "TaxRate" : 5.877124706116695,
          "AssetID" : 9,
          "LineType" : "LineType",
          "Comment" : "Comment",
          "RefInventoryCode" : "RefInventoryCode",
          "QuantityInCart" : 3.901545264248647,
          "Title" : "Title",
          "Quantity" : 1.8268702177058116,
          "CostPriceTax" : 8.761432466225475,
          "QuantityFaulty" : 9.785002165136461,
          "QuantityReceived" : 3.2841216543560217,
          "SKU" : "SKU",
          "CostPriceExString" : "CostPriceExString",
          "IsAssetItem" : true,
          "SupplierInventoryGUIDString" : "SupplierInventoryGUIDString"
        } ],
        "ExchangeRate" : 6.176386745020588,
        "RepEmailAddress" : "RepEmailAddress",
        "IsActive" : true,
        "TotalExString" : "TotalExString",
        "ShipContactLastName" : "ShipContactLastName",
        "BillLatitude" : 0.11859130807119977,
        "TransType" : "TransType",
        "ContractID" : 0,
        "Attachments" : [ {
          "AttachmentType" : "AttachmentType",
          "LineID" : 2,
          "IsActive" : true,
          "ThumbnailURI" : "ThumbnailURI",
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "IsImage" : true,
          "URI" : "URI",
          "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Caption" : "Caption",
          "GUIDstring" : "GUIDstring",
          "IsPDF" : true,
          "IsFromParent" : true,
          "ID" : 7,
          "AttachedByUserID" : 3,
          "MessageID" : 0
        }, {
          "AttachmentType" : "AttachmentType",
          "LineID" : 2,
          "IsActive" : true,
          "ThumbnailURI" : "ThumbnailURI",
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "IsImage" : true,
          "URI" : "URI",
          "AttachedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
          "Caption" : "Caption",
          "GUIDstring" : "GUIDstring",
          "IsPDF" : true,
          "IsFromParent" : true,
          "ID" : 7,
          "AttachedByUserID" : 3,
          "MessageID" : 0
        } ],
        "QuantityCount" : 8.969578798196912,
        "TotalOwing" : 0.10263654006109402,
        "HasBeenAmended" : true,
        "AccountBalance" : 2.8841621266687802,
        "TotalTax" : 9.456612101333725,
        "RepLastName" : "RepLastName",
        "ExternalTerminalName" : "ExternalTerminalName",
        "CashPaymentRounding" : 4.1661834558007,
        "UseIncPrices" : true,
        "CustomerName" : "CustomerName",
        "DueDate" : "2000-01-23T04:56:07.000+00:00",
        "TerritoryID" : 6,
        "ShipContactEmailAddress" : "ShipContactEmailAddress",
        "ExternalNotes" : "ExternalNotes",
        "AcceptedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "ShipCity" : "ShipCity",
        "BillCity" : "BillCity",
        "BillStreetAddress" : "BillStreetAddress",
        "Contact" : {
          "BusinessName" : "BusinessName",
          "FirstName" : "FirstName",
          "IsActive" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
          "Birthday" : "2000-01-23T04:56:07.000+00:00",
          "Gender" : "Gender",
          "PositionOrOccupation" : "PositionOrOccupation",
          "IsIncludeInEmails" : true,
          "EmailAddress" : "EmailAddress",
          "ContactRole" : "ContactRole",
          "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
          "BusinessContactID" : 7,
          "GUIDstring" : "GUIDstring",
          "PhoneMobile" : "PhoneMobile",
          "IsPrimaryContact" : true,
          "Phone1" : "Phone1",
          "IsSystem" : true,
          "ID" : 4,
          "LastName" : "LastName",
          "BusinessID" : 1
        },
        "InvoiceType" : "InvoiceType",
        "IsIndividual" : true,
        "HasBeenAmendedByOtherParty" : true,
        "ReceivedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "RowNumber" : 6,
        "ContactEmailAddress" : "ContactEmailAddress",
        "InboxID" : 3,
        "BillLongitude" : 4.637509675190766,
        "ShippingAddress" : {
          "FullAddress" : "FullAddress",
          "IsDefaultDeliverTo" : true,
          "IsActive" : true,
          "LocationID" : 3,
          "Latitude" : 5.944895607614016,
          "GUIDstring" : "GUIDstring",
          "IsPostalAddress" : true,
          "AddressDescription" : "AddressDescription",
          "ID" : 6,
          "Notes" : "Notes",
          "IsDeliverTo" : true,
          "IsSelectedBilling" : true,
          "IsSelectedDelivery" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "City" : "City",
          "Longitude" : 6.704019297950036,
          "StreetAddress" : "StreetAddress",
          "IsMailTo" : true,
          "IsServiceTo" : true,
          "State" : "State",
          "IsDefaultServiceTo" : true,
          "IsOfficeOrShop" : true,
          "Country" : "Country",
          "IsSystem" : true,
          "AddressType" : 3,
          "PostCode" : "PostCode",
          "IsDefaultBilling" : true
        },
        "CreatedDateTime_utc" : "2000-01-23T04:56:07.000+00:00",
        "TotalPaidString" : "TotalPaidString",
        "CustomerRefTransRefNumber" : "CustomerRefTransRefNumber",
        "CostCentreCode" : "CostCentreCode",
        "VendorTransRefNumber" : "VendorTransRefNumber",
        "CreatedDateTime_offset" : 7,
        "RepFirstName" : "RepFirstName"
      },
      "EstValue" : 8.768153453040833,
      "NoOfItems" : 6.642953999458534,
      "ID" : 7,
      "IsReadOnly" : true,
      "IsBillable" : true,
      "Status" : "Status",
      "RefNumber" : "RefNumber",
      "DurationMonths" : 6,
      "ScheduleContact" : {
        "BusinessName" : "BusinessName",
        "FirstName" : "FirstName",
        "IsActive" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "Title" : "Title",
        "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
        "Birthday" : "2000-01-23T04:56:07.000+00:00",
        "Gender" : "Gender",
        "PositionOrOccupation" : "PositionOrOccupation",
        "IsIncludeInEmails" : true,
        "EmailAddress" : "EmailAddress",
        "ContactRole" : "ContactRole",
        "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
        "BusinessContactID" : 7,
        "GUIDstring" : "GUIDstring",
        "PhoneMobile" : "PhoneMobile",
        "IsPrimaryContact" : true,
        "Phone1" : "Phone1",
        "IsSystem" : true,
        "ID" : 4,
        "LastName" : "LastName",
        "BusinessID" : 1
      },
      "EndDate" : "2000-01-23T04:56:07.000+00:00",
      "BillingContact" : {
        "BusinessName" : "BusinessName",
        "FirstName" : "FirstName",
        "IsActive" : true,
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "Title" : "Title",
        "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
        "Birthday" : "2000-01-23T04:56:07.000+00:00",
        "Gender" : "Gender",
        "PositionOrOccupation" : "PositionOrOccupation",
        "IsIncludeInEmails" : true,
        "EmailAddress" : "EmailAddress",
        "ContactRole" : "ContactRole",
        "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
        "BusinessContactID" : 7,
        "GUIDstring" : "GUIDstring",
        "PhoneMobile" : "PhoneMobile",
        "IsPrimaryContact" : true,
        "Phone1" : "Phone1",
        "IsSystem" : true,
        "ID" : 4,
        "LastName" : "LastName",
        "BusinessID" : 1
      },
      "ScheduleConfig" : {
        "Recurrence" : 8,
        "DaysOfWeek" : "DaysOfWeek",
        "FrequencyType" : 6,
        "DayOfMonth" : 9
      },
      "NoOfLines" : 9.505836306729838,
      "BillingStartDate" : "2000-01-23T04:56:07.000+00:00",
      "CreatedDate" : "2000-01-23T04:56:07.000+00:00",
      "Location" : {
        "IsActive" : true,
        "TimeZoneName" : "TimeZoneName",
        "GUID" : "00000000-0000-0000-0000-000000000000",
        "EmailAddress" : "EmailAddress",
        "Name" : "Name",
        "LocationName" : "LocationName",
        "GUIDstring" : "GUIDstring",
        "Addresses" : [ {
          "FullAddress" : "FullAddress",
          "IsDefaultDeliverTo" : true,
          "IsActive" : true,
          "LocationID" : 3,
          "Latitude" : 5.944895607614016,
          "GUIDstring" : "GUIDstring",
          "IsPostalAddress" : true,
          "AddressDescription" : "AddressDescription",
          "ID" : 6,
          "Notes" : "Notes",
          "IsDeliverTo" : true,
          "IsSelectedBilling" : true,
          "IsSelectedDelivery" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "City" : "City",
          "Longitude" : 6.704019297950036,
          "StreetAddress" : "StreetAddress",
          "IsMailTo" : true,
          "IsServiceTo" : true,
          "State" : "State",
          "IsDefaultServiceTo" : true,
          "IsOfficeOrShop" : true,
          "Country" : "Country",
          "IsSystem" : true,
          "AddressType" : 3,
          "PostCode" : "PostCode",
          "IsDefaultBilling" : true
        }, {
          "FullAddress" : "FullAddress",
          "IsDefaultDeliverTo" : true,
          "IsActive" : true,
          "LocationID" : 3,
          "Latitude" : 5.944895607614016,
          "GUIDstring" : "GUIDstring",
          "IsPostalAddress" : true,
          "AddressDescription" : "AddressDescription",
          "ID" : 6,
          "Notes" : "Notes",
          "IsDeliverTo" : true,
          "IsSelectedBilling" : true,
          "IsSelectedDelivery" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "City" : "City",
          "Longitude" : 6.704019297950036,
          "StreetAddress" : "StreetAddress",
          "IsMailTo" : true,
          "IsServiceTo" : true,
          "State" : "State",
          "IsDefaultServiceTo" : true,
          "IsOfficeOrShop" : true,
          "Country" : "Country",
          "IsSystem" : true,
          "AddressType" : 3,
          "PostCode" : "PostCode",
          "IsDefaultBilling" : true
        } ],
        "UtcOffset" : 6,
        "IsVisibleToPublic" : true,
        "Contacts" : [ {
          "BusinessName" : "BusinessName",
          "FirstName" : "FirstName",
          "IsActive" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
          "Birthday" : "2000-01-23T04:56:07.000+00:00",
          "Gender" : "Gender",
          "PositionOrOccupation" : "PositionOrOccupation",
          "IsIncludeInEmails" : true,
          "EmailAddress" : "EmailAddress",
          "ContactRole" : "ContactRole",
          "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
          "BusinessContactID" : 7,
          "GUIDstring" : "GUIDstring",
          "PhoneMobile" : "PhoneMobile",
          "IsPrimaryContact" : true,
          "Phone1" : "Phone1",
          "IsSystem" : true,
          "ID" : 4,
          "LastName" : "LastName",
          "BusinessID" : 1
        }, {
          "BusinessName" : "BusinessName",
          "FirstName" : "FirstName",
          "IsActive" : true,
          "GUID" : "00000000-0000-0000-0000-000000000000",
          "Title" : "Title",
          "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
          "Birthday" : "2000-01-23T04:56:07.000+00:00",
          "Gender" : "Gender",
          "PositionOrOccupation" : "PositionOrOccupation",
          "IsIncludeInEmails" : true,
          "EmailAddress" : "EmailAddress",
          "ContactRole" : "ContactRole",
          "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
          "BusinessContactID" : 7,
          "GUIDstring" : "GUIDstring",
          "PhoneMobile" : "PhoneMobile",
          "IsPrimaryContact" : true,
          "Phone1" : "Phone1",
          "IsSystem" : true,
          "ID" : 4,
          "LastName" : "LastName",
          "BusinessID" : 1
        } ],
        "Phone" : "Phone",
        "IsSystem" : true,
        "ID" : 2,
        "Fax" : "Fax",
        "IsDefaultLocation" : true
      }
    } ],
    "Description" : "Description",
    "CustomerBSID" : "CustomerBSID",
    "IsActive" : true,
    "HasStarted" : true,
    "TemplateDescription" : "TemplateDescription",
    "ContractTemplateID" : 0,
    "BillingFrequencyConfig" : {
      "Recurrence" : 4,
      "DaysOfWeek" : "DaysOfWeek",
      "FrequencyType" : 1,
      "DayOfMonth" : 5,
      "BillingMode" : 7
    },
    "ContractTypeType" : 1,
    "TotalTax" : 2.3021358869347655,
    "ApprovedDateTime" : "2000-01-23T04:56:07.000+00:00",
    "TemplateName" : "TemplateName",
    "CustomerName" : "CustomerName",
    "BillToCustomerID" : 2,
    "IsSendInvoicesByEmail" : true,
    "IsAggregateBilling" : true,
    "DestinationWarehouseAddress" : {
      "FullAddress" : "FullAddress",
      "IsDefaultDeliverTo" : true,
      "IsActive" : true,
      "LocationID" : 3,
      "Latitude" : 5.944895607614016,
      "GUIDstring" : "GUIDstring",
      "IsPostalAddress" : true,
      "AddressDescription" : "AddressDescription",
      "ID" : 6,
      "Notes" : "Notes",
      "IsDeliverTo" : true,
      "IsSelectedBilling" : true,
      "IsSelectedDelivery" : true,
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "City" : "City",
      "Longitude" : 6.704019297950036,
      "StreetAddress" : "StreetAddress",
      "IsMailTo" : true,
      "IsServiceTo" : true,
      "State" : "State",
      "IsDefaultServiceTo" : true,
      "IsOfficeOrShop" : true,
      "Country" : "Country",
      "IsSystem" : true,
      "AddressType" : 3,
      "PostCode" : "PostCode",
      "IsDefaultBilling" : true
    },
    "SourceWarehouseAddress" : {
      "FullAddress" : "FullAddress",
      "IsDefaultDeliverTo" : true,
      "IsActive" : true,
      "LocationID" : 3,
      "Latitude" : 5.944895607614016,
      "GUIDstring" : "GUIDstring",
      "IsPostalAddress" : true,
      "AddressDescription" : "AddressDescription",
      "ID" : 6,
      "Notes" : "Notes",
      "IsDeliverTo" : true,
      "IsSelectedBilling" : true,
      "IsSelectedDelivery" : true,
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "City" : "City",
      "Longitude" : 6.704019297950036,
      "StreetAddress" : "StreetAddress",
      "IsMailTo" : true,
      "IsServiceTo" : true,
      "State" : "State",
      "IsDefaultServiceTo" : true,
      "IsOfficeOrShop" : true,
      "Country" : "Country",
      "IsSystem" : true,
      "AddressType" : 3,
      "PostCode" : "PostCode",
      "IsDefaultBilling" : true
    },
    "TerminationDate" : "2000-01-23T04:56:07.000+00:00",
    "EndDate" : "2000-01-23T04:56:07.000+00:00",
    "Contact" : {
      "BusinessName" : "BusinessName",
      "FirstName" : "FirstName",
      "IsActive" : true,
      "GUID" : "00000000-0000-0000-0000-000000000000",
      "Title" : "Title",
      "BusinessLocationGuid" : "00000000-0000-0000-0000-000000000000",
      "Birthday" : "2000-01-23T04:56:07.000+00:00",
      "Gender" : "Gender",
      "PositionOrOccupation" : "PositionOrOccupation",
      "IsIncludeInEmails" : true,
      "EmailAddress" : "EmailAddress",
      "ContactRole" : "ContactRole",
      "LinkedUserGlobalIDstring" : "LinkedUserGlobalIDstring",
      "BusinessContactID" : 7,
      "GUIDstring" : "GUIDstring",
      "PhoneMobile" : "PhoneMobile",
      "IsPrimaryContact" : true,
      "Phone1" : "Phone1",
      "IsSystem" : true,
      "ID" : 4,
      "LastName" : "LastName",
      "BusinessID" : 1
    },
    "TotalEx" : 5.637376656633329,
    "TerminationReason" : "TerminationReason",
    "SourceWarehouseID" : 2,
    "ScheduleStatus" : "ScheduleStatus",
    "RolloverContractID" : 5
  },
  "AvailablePlans" : [ {
    "ContractTemplateID" : 2,
    "CustomerClass" : "CustomerClass",
    "Description" : "Description",
    "Modules" : [ 6, 6 ],
    "IsFreePlan" : true,
    "IsSelected" : true,
    "Name" : "Name"
  }, {
    "ContractTemplateID" : 2,
    "CustomerClass" : "CustomerClass",
    "Description" : "Description",
    "Modules" : [ 6, 6 ],
    "IsFreePlan" : true,
    "IsSelected" : true,
    "Name" : "Name"
  } ],
  "SelectedPlan" : {
    "ContractTemplateID" : 2,
    "CustomerClass" : "CustomerClass",
    "Description" : "Description",
    "Modules" : [ 6, 6 ],
    "IsFreePlan" : true,
    "IsSelected" : true,
    "Name" : "Name"
  },
  "TenantID" : 9,
  "DomainUrl" : "DomainUrl",
  "CustomerTenantID" : 3,
  "UserID" : 4,
  "CustomerID" : 1,
  "EmailAddress" : "EmailAddress"
}' \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '<AccountDetails>
  <CustomerClass>aeiou</CustomerClass>
  <null>
    <ContractTemplateID>123</ContractTemplateID>
    <ParentContractID>123</ParentContractID>
    <GUID>00000000-0000-0000-0000-000000000000</GUID>
    <ContractTypeType>123</ContractTypeType>
    <LineCount>123</LineCount>
    <TotalEx>3.149</TotalEx>
    <TotalTax>3.149</TotalTax>
    <TotalInc>3.149</TotalInc>
    <BillingDescription>aeiou</BillingDescription>
    <ID>123</ID>
    <GUIDstring>aeiou</GUIDstring>
    <CustomerID>123</CustomerID>
    <RefNumber>aeiou</RefNumber>
    <CustomerGUIDstring>aeiou</CustomerGUIDstring>
    <ContractType>aeiou</ContractType>
    <CustomerName>aeiou</CustomerName>
    <TemplateName>aeiou</TemplateName>
    <CustomerBSID>aeiou</CustomerBSID>
    <TemplateDescription>aeiou</TemplateDescription>
    <CustomerRefNumber>aeiou</CustomerRefNumber>
    <Name>aeiou</Name>
    <BillToCustomerID>123</BillToCustomerID>
    <Description>aeiou</Description>
    <TermMonths>123</TermMonths>
    <StartDate>2000-01-23T04:56:07.000Z</StartDate>
    <IsCommonBilling>true</IsCommonBilling>
    <EndDate>2000-01-23T04:56:07.000Z</EndDate>
    <IsAggregateBilling>true</IsAggregateBilling>
    <HasStarted>true</HasStarted>
    <IsSendInvoicesByEmail>true</IsSendInvoicesByEmail>
    <IsApproved>true</IsApproved>
    <IsAutoExtend>true</IsAutoExtend>
    <ApprovedByUserID>123</ApprovedByUserID>
    <IsActive>true</IsActive>
    <ApprovedDateTime>2000-01-23T04:56:07.000Z</ApprovedDateTime>
    <InventoryID>123</InventoryID>
    <BillingStartDate>2000-01-23T04:56:07.000Z</BillingStartDate>
    <Status>aeiou</Status>
    <ScheduleStatus>aeiou</ScheduleStatus>
    <IsReadOnly>true</IsReadOnly>
    <IsRolledOver>true</IsRolledOver>
    <RolloverContractID>123</RolloverContractID>
    <IsTerminated>true</IsTerminated>
    <TerminationReason>aeiou</TerminationReason>
    <TerminationDate>2000-01-23T04:56:07.000Z</TerminationDate>
    <DestinationWarehouseID>123</DestinationWarehouseID>
    <DestinationWarehouseName>aeiou</DestinationWarehouseName>
    <SourceWarehouseID>123</SourceWarehouseID>
    <SourceWarehouseName>aeiou</SourceWarehouseName>
  </null>
  <null>
    <ContractTemplateID>123</ContractTemplateID>
    <Name>aeiou</Name>
    <Description>aeiou</Description>
    <IsSelected>true</IsSelected>
    <IsFreePlan>true</IsFreePlan>
    <CustomerClass>aeiou</CustomerClass>
    <Modules>123</Modules>
  </null>
  <null>
    <ContractTemplateID>123</ContractTemplateID>
    <Name>aeiou</Name>
    <Description>aeiou</Description>
    <IsSelected>true</IsSelected>
    <IsFreePlan>true</IsFreePlan>
    <CustomerClass>aeiou</CustomerClass>
    <Modules>123</Modules>
  </null>
  <CustomerID>123</CustomerID>
  <CustomerTenantID>123</CustomerTenantID>
  <EmailAddress>aeiou</EmailAddress>
  <DomainUrl>aeiou</DomainUrl>
  <TenantID>123</TenantID>
  <WebsiteID>123</WebsiteID>
  <UserID>123</UserID>
</AccountDetails>' \
 -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();
        AccountDetails accountDetails = ; // AccountDetails | 

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

final api_instance = DefaultApi();

final AccountDetails accountDetails = new AccountDetails(); // AccountDetails | 

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

import org.openapitools.client.api.DefaultApi;

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

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


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
AccountDetails *accountDetails = ; //  (optional)

// Registration_SaveAccount
[apiInstance registrationSaveAccountWith:accountDetails
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiRegistration = require('as_server_api_registration');

// Create an instance of the API class
var api = new AsServerApiRegistration.DefaultApi()
var opts = {
  'accountDetails':  // {AccountDetails} 
};

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

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

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

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

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

try {
    $result = $api_instance->registrationSaveAccount($accountDetails);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->registrationSaveAccount: ', $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 $accountDetails = WWW::OPenAPIClient::Object::AccountDetails->new(); # AccountDetails | 

eval {
    my $result = $api_instance->registrationSaveAccount(accountDetails => $accountDetails);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->registrationSaveAccount: $@\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()
accountDetails =  # AccountDetails |  (optional)

try:
    # Registration_SaveAccount
    api_response = api_instance.registration_save_account(accountDetails=accountDetails)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->registrationSaveAccount: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let accountDetails = ; // AccountDetails

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

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

Scopes

Parameters

Body parameters
Name Description
accountDetails

Responses