BeagelEnterprise

Account

apiAccountAddUpdateAdminUserPost

Add updates Admin user (Roles: SuperAdmin)


/api/Account/AddUpdateAdminUser

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/AddUpdateAdminUser"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.UserDto body = ; // BeagelEnterprise.Models.UserDto | 
        try {
            apiInstance.apiAccountAddUpdateAdminUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountAddUpdateAdminUserPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.UserDto body = ; // BeagelEnterprise.Models.UserDto | 
        try {
            apiInstance.apiAccountAddUpdateAdminUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountAddUpdateAdminUserPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.UserDto *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Add updates Admin user (Roles: SuperAdmin)
[apiInstance apiAccountAddUpdateAdminUserPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.UserDto}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountAddUpdateAdminUserPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelEnterprise.Models.UserDto(); // BeagelEnterprise.Models.UserDto |  (optional) 

            try
            {
                // Add updates Admin user (Roles: SuperAdmin)
                apiInstance.apiAccountAddUpdateAdminUserPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountAddUpdateAdminUserPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelEnterprise.Models.UserDto | 

try {
    $api_instance->apiAccountAddUpdateAdminUserPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountAddUpdateAdminUserPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.UserDto->new(); # BeagelEnterprise.Models.UserDto | 

eval { 
    $api_instance->apiAccountAddUpdateAdminUserPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountAddUpdateAdminUserPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelEnterprise.Models.UserDto |  (optional)

try: 
    # Add updates Admin user (Roles: SuperAdmin)
    api_instance.api_account_add_update_admin_user_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountAddUpdateAdminUserPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountAddUpdateBranchUserPost

Adds or updates the branch user (Roles: BranchUser, Admin, SuperAdmin, GroupUser, AgencyUser)


/api/Account/AddUpdateBranchUser

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/AddUpdateBranchUser"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.BranchUserDto body = ; // BeagelEnterprise.Models.BranchUserDto | BeagelManagers.Models.BranchUser
        try {
            apiInstance.apiAccountAddUpdateBranchUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountAddUpdateBranchUserPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.BranchUserDto body = ; // BeagelEnterprise.Models.BranchUserDto | BeagelManagers.Models.BranchUser
        try {
            apiInstance.apiAccountAddUpdateBranchUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountAddUpdateBranchUserPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.BranchUserDto *body = ; // BeagelManagers.Models.BranchUser (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Adds or updates the branch user (Roles: BranchUser, Admin, SuperAdmin, GroupUser, AgencyUser)
[apiInstance apiAccountAddUpdateBranchUserPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.BranchUserDto}} BeagelManagers.Models.BranchUser
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountAddUpdateBranchUserPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelEnterprise.Models.BranchUserDto(); // BeagelEnterprise.Models.BranchUserDto | BeagelManagers.Models.BranchUser (optional) 

            try
            {
                // Adds or updates the branch user (Roles: BranchUser, Admin, SuperAdmin, GroupUser, AgencyUser)
                apiInstance.apiAccountAddUpdateBranchUserPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountAddUpdateBranchUserPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelEnterprise.Models.BranchUserDto | BeagelManagers.Models.BranchUser

try {
    $api_instance->apiAccountAddUpdateBranchUserPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountAddUpdateBranchUserPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.BranchUserDto->new(); # BeagelEnterprise.Models.BranchUserDto | BeagelManagers.Models.BranchUser

eval { 
    $api_instance->apiAccountAddUpdateBranchUserPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountAddUpdateBranchUserPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelEnterprise.Models.BranchUserDto | BeagelManagers.Models.BranchUser (optional)

try: 
    # Adds or updates the branch user (Roles: BranchUser, Admin, SuperAdmin, GroupUser, AgencyUser)
    api_instance.api_account_add_update_branch_user_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountAddUpdateBranchUserPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountAgentCodeConfirmationPost

Agent code confirmation


/api/Account/AgentCodeConfirmation

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Account/AgentCodeConfirmation?Username=&Code=&SaleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        String username = username_example; // String | 
        String code = code_example; // String | 
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiAccountAgentCodeConfirmationPost(username, code, saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountAgentCodeConfirmationPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        String username = username_example; // String | 
        String code = code_example; // String | 
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiAccountAgentCodeConfirmationPost(username, code, saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountAgentCodeConfirmationPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *username = username_example; //  (optional)
String *code = code_example; //  (optional)
Integer *saleId = 56; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Agent code confirmation
[apiInstance apiAccountAgentCodeConfirmationPostWith:username
    code:code
    saleId:saleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'username': username_example, // {{String}} 
  'code': code_example, // {{String}} 
  'saleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountAgentCodeConfirmationPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var username = username_example;  // String |  (optional) 
            var code = code_example;  // String |  (optional) 
            var saleId = 56;  // Integer |  (optional) 

            try
            {
                // Agent code confirmation
                apiInstance.apiAccountAgentCodeConfirmationPost(username, code, saleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountAgentCodeConfirmationPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$username = username_example; // String | 
$code = code_example; // String | 
$saleId = 56; // Integer | 

try {
    $api_instance->apiAccountAgentCodeConfirmationPost($username, $code, $saleId);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountAgentCodeConfirmationPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $username = username_example; # String | 
my $code = code_example; # String | 
my $saleId = 56; # Integer | 

eval { 
    $api_instance->apiAccountAgentCodeConfirmationPost(username => $username, code => $code, saleId => $saleId);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountAgentCodeConfirmationPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
username = username_example # String |  (optional)
code = code_example # String |  (optional)
saleId = 56 # Integer |  (optional)

try: 
    # Agent code confirmation
    api_instance.api_account_agent_code_confirmation_post(username=username, code=code, saleId=saleId)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountAgentCodeConfirmationPost: %s\n" % e)

Parameters

Query parameters
Name Description
Username
String
Code
String
SaleId
Integer (int32)

Responses

Status: 200 - Success


apiAccountBidderCodeConfirmationPost

Bidder code confirmation for beagel bid


/api/Account/BidderCodeConfirmation

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Account/BidderCodeConfirmation?username=&code="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        String username = username_example; // String | 
        String code = code_example; // String | 
        try {
            apiInstance.apiAccountBidderCodeConfirmationPost(username, code);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountBidderCodeConfirmationPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        String username = username_example; // String | 
        String code = code_example; // String | 
        try {
            apiInstance.apiAccountBidderCodeConfirmationPost(username, code);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountBidderCodeConfirmationPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *username = username_example; //  (optional)
String *code = code_example; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Bidder code confirmation for beagel bid
[apiInstance apiAccountBidderCodeConfirmationPostWith:username
    code:code
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'username': username_example, // {{String}} 
  'code': code_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountBidderCodeConfirmationPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var username = username_example;  // String |  (optional) 
            var code = code_example;  // String |  (optional) 

            try
            {
                // Bidder code confirmation for beagel bid
                apiInstance.apiAccountBidderCodeConfirmationPost(username, code);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountBidderCodeConfirmationPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$username = username_example; // String | 
$code = code_example; // String | 

try {
    $api_instance->apiAccountBidderCodeConfirmationPost($username, $code);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountBidderCodeConfirmationPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $username = username_example; # String | 
my $code = code_example; # String | 

eval { 
    $api_instance->apiAccountBidderCodeConfirmationPost(username => $username, code => $code);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountBidderCodeConfirmationPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
username = username_example # String |  (optional)
code = code_example # String |  (optional)

try: 
    # Bidder code confirmation for beagel bid
    api_instance.api_account_bidder_code_confirmation_post(username=username, code=code)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountBidderCodeConfirmationPost: %s\n" % e)

Parameters

Query parameters
Name Description
username
String
code
String

Responses

Status: 200 - Success


apiAccountBidderConfirmationPost

Add bidder to registration


/api/Account/BidderConfirmation

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/BidderConfirmation?token="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Bidder body = ; // BeagelManagers.Models.Bidder | 
        String token = token_example; // String | 
        try {
            apiInstance.apiAccountBidderConfirmationPost(body, token);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountBidderConfirmationPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Bidder body = ; // BeagelManagers.Models.Bidder | 
        String token = token_example; // String | 
        try {
            apiInstance.apiAccountBidderConfirmationPost(body, token);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountBidderConfirmationPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Bidder *body = ; //  (optional)
String *token = token_example; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Add bidder to registration
[apiInstance apiAccountBidderConfirmationPostWith:body
    token:token
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Bidder}} 
  'token': token_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountBidderConfirmationPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelManagers.Models.Bidder(); // BeagelManagers.Models.Bidder |  (optional) 
            var token = token_example;  // String |  (optional) 

            try
            {
                // Add bidder to registration
                apiInstance.apiAccountBidderConfirmationPost(body, token);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountBidderConfirmationPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelManagers.Models.Bidder | 
$token = token_example; // String | 

try {
    $api_instance->apiAccountBidderConfirmationPost($body, $token);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountBidderConfirmationPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Bidder->new(); # BeagelManagers.Models.Bidder | 
my $token = token_example; # String | 

eval { 
    $api_instance->apiAccountBidderConfirmationPost(body => $body, token => $token);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountBidderConfirmationPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelManagers.Models.Bidder |  (optional)
token = token_example # String |  (optional)

try: 
    # Add bidder to registration
    api_instance.api_account_bidder_confirmation_post(body=body, token=token)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountBidderConfirmationPost: %s\n" % e)

Parameters

Body parameters
Name Description
body
Query parameters
Name Description
token
String

Responses

Status: 200 - Success


apiAccountBidderLoginPost

A special login method for bidder (beagel bid)


/api/Account/BidderLogin

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/BidderLogin"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.LoginViewModel body = ; // BeagelEnterprise.Models.LoginViewModel | 
        try {
            apiInstance.apiAccountBidderLoginPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountBidderLoginPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.LoginViewModel body = ; // BeagelEnterprise.Models.LoginViewModel | 
        try {
            apiInstance.apiAccountBidderLoginPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountBidderLoginPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.LoginViewModel *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// A special login method for bidder (beagel bid)
[apiInstance apiAccountBidderLoginPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.LoginViewModel}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountBidderLoginPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelEnterprise.Models.LoginViewModel(); // BeagelEnterprise.Models.LoginViewModel |  (optional) 

            try
            {
                // A special login method for bidder (beagel bid)
                apiInstance.apiAccountBidderLoginPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountBidderLoginPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelEnterprise.Models.LoginViewModel | 

try {
    $api_instance->apiAccountBidderLoginPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountBidderLoginPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.LoginViewModel->new(); # BeagelEnterprise.Models.LoginViewModel | 

eval { 
    $api_instance->apiAccountBidderLoginPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountBidderLoginPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelEnterprise.Models.LoginViewModel |  (optional)

try: 
    # A special login method for bidder (beagel bid)
    api_instance.api_account_bidder_login_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountBidderLoginPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountChangePasswordPost

Change account password (Roles: All)


/api/Account/ChangePassword

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/ChangePassword"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.LoginViewModel body = ; // BeagelEnterprise.Models.LoginViewModel | 
        try {
            apiInstance.apiAccountChangePasswordPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountChangePasswordPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.LoginViewModel body = ; // BeagelEnterprise.Models.LoginViewModel | 
        try {
            apiInstance.apiAccountChangePasswordPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountChangePasswordPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.LoginViewModel *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Change account password (Roles: All)
[apiInstance apiAccountChangePasswordPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.LoginViewModel}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountChangePasswordPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelEnterprise.Models.LoginViewModel(); // BeagelEnterprise.Models.LoginViewModel |  (optional) 

            try
            {
                // Change account password (Roles: All)
                apiInstance.apiAccountChangePasswordPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountChangePasswordPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelEnterprise.Models.LoginViewModel | 

try {
    $api_instance->apiAccountChangePasswordPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountChangePasswordPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.LoginViewModel->new(); # BeagelEnterprise.Models.LoginViewModel | 

eval { 
    $api_instance->apiAccountChangePasswordPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountChangePasswordPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelEnterprise.Models.LoginViewModel |  (optional)

try: 
    # Change account password (Roles: All)
    api_instance.api_account_change_password_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountChangePasswordPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountChangeRoleOfUserPost

Changes the role of the user (Roles: Admin, SuperAdmin, GroupUser)


/api/Account/ChangeRoleOfUser

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Account/ChangeRoleOfUser?GroupId=&AgencyId=&BranchId=&Email=&NewRole=&ChangingUserEmail="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        Integer groupId = 56; // Integer | 
        Integer agencyId = 56; // Integer | 
        Integer branchId = 56; // Integer | 
        String email = email_example; // String | 
        String newRole = newRole_example; // String | 
        String changingUserEmail = changingUserEmail_example; // String | 
        try {
            apiInstance.apiAccountChangeRoleOfUserPost(groupId, agencyId, branchId, email, newRole, changingUserEmail);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountChangeRoleOfUserPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        Integer groupId = 56; // Integer | 
        Integer agencyId = 56; // Integer | 
        Integer branchId = 56; // Integer | 
        String email = email_example; // String | 
        String newRole = newRole_example; // String | 
        String changingUserEmail = changingUserEmail_example; // String | 
        try {
            apiInstance.apiAccountChangeRoleOfUserPost(groupId, agencyId, branchId, email, newRole, changingUserEmail);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountChangeRoleOfUserPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)
Integer *agencyId = 56; //  (optional)
Integer *branchId = 56; //  (optional)
String *email = email_example; //  (optional)
String *newRole = newRole_example; //  (optional)
String *changingUserEmail = changingUserEmail_example; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Changes the role of the user (Roles: Admin, SuperAdmin, GroupUser)
[apiInstance apiAccountChangeRoleOfUserPostWith:groupId
    agencyId:agencyId
    branchId:branchId
    email:email
    newRole:newRole
    changingUserEmail:changingUserEmail
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'groupId': 56, // {{Integer}} 
  'agencyId': 56, // {{Integer}} 
  'branchId': 56, // {{Integer}} 
  'email': email_example, // {{String}} 
  'newRole': newRole_example, // {{String}} 
  'changingUserEmail': changingUserEmail_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountChangeRoleOfUserPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var groupId = 56;  // Integer |  (optional) 
            var agencyId = 56;  // Integer |  (optional) 
            var branchId = 56;  // Integer |  (optional) 
            var email = email_example;  // String |  (optional) 
            var newRole = newRole_example;  // String |  (optional) 
            var changingUserEmail = changingUserEmail_example;  // String |  (optional) 

            try
            {
                // Changes the role of the user (Roles: Admin, SuperAdmin, GroupUser)
                apiInstance.apiAccountChangeRoleOfUserPost(groupId, agencyId, branchId, email, newRole, changingUserEmail);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountChangeRoleOfUserPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$groupId = 56; // Integer | 
$agencyId = 56; // Integer | 
$branchId = 56; // Integer | 
$email = email_example; // String | 
$newRole = newRole_example; // String | 
$changingUserEmail = changingUserEmail_example; // String | 

try {
    $api_instance->apiAccountChangeRoleOfUserPost($groupId, $agencyId, $branchId, $email, $newRole, $changingUserEmail);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountChangeRoleOfUserPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $groupId = 56; # Integer | 
my $agencyId = 56; # Integer | 
my $branchId = 56; # Integer | 
my $email = email_example; # String | 
my $newRole = newRole_example; # String | 
my $changingUserEmail = changingUserEmail_example; # String | 

eval { 
    $api_instance->apiAccountChangeRoleOfUserPost(groupId => $groupId, agencyId => $agencyId, branchId => $branchId, email => $email, newRole => $newRole, changingUserEmail => $changingUserEmail);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountChangeRoleOfUserPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
groupId = 56 # Integer |  (optional)
agencyId = 56 # Integer |  (optional)
branchId = 56 # Integer |  (optional)
email = email_example # String |  (optional)
newRole = newRole_example # String |  (optional)
changingUserEmail = changingUserEmail_example # String |  (optional)

try: 
    # Changes the role of the user (Roles: Admin, SuperAdmin, GroupUser)
    api_instance.api_account_change_role_of_user_post(groupId=groupId, agencyId=agencyId, branchId=branchId, email=email, newRole=newRole, changingUserEmail=changingUserEmail)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountChangeRoleOfUserPost: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)
AgencyId
Integer (int32)
BranchId
Integer (int32)
Email
String
NewRole
String
ChangingUserEmail
String

Responses

Status: 200 - Success


apiAccountCreateAgentPost

Creates a buyer agent for the system.


/api/Account/CreateAgent

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/CreateAgent"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Agent body = ; // BeagelManagers.Models.Agent | The agent of the system
        try {
            apiInstance.apiAccountCreateAgentPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountCreateAgentPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Agent body = ; // BeagelManagers.Models.Agent | The agent of the system
        try {
            apiInstance.apiAccountCreateAgentPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountCreateAgentPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Agent *body = ; // The agent of the system (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Creates a buyer agent for the system.
[apiInstance apiAccountCreateAgentPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Agent}} The agent of the system
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountCreateAgentPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelManagers.Models.Agent(); // BeagelManagers.Models.Agent | The agent of the system (optional) 

            try
            {
                // Creates a buyer agent for the system.
                apiInstance.apiAccountCreateAgentPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountCreateAgentPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelManagers.Models.Agent | The agent of the system

try {
    $api_instance->apiAccountCreateAgentPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountCreateAgentPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Agent->new(); # BeagelManagers.Models.Agent | The agent of the system

eval { 
    $api_instance->apiAccountCreateAgentPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountCreateAgentPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelManagers.Models.Agent | The agent of the system (optional)

try: 
    # Creates a buyer agent for the system.
    api_instance.api_account_create_agent_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountCreateAgentPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountCreateBidderPost

Create a user for the bidder in beagel bid


/api/Account/CreateBidder

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/CreateBidder"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Bidder body = ; // BeagelManagers.Models.Bidder | 
        try {
            apiInstance.apiAccountCreateBidderPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountCreateBidderPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Bidder body = ; // BeagelManagers.Models.Bidder | 
        try {
            apiInstance.apiAccountCreateBidderPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountCreateBidderPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Bidder *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Create a user for the bidder in beagel bid
[apiInstance apiAccountCreateBidderPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Bidder}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountCreateBidderPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelManagers.Models.Bidder(); // BeagelManagers.Models.Bidder |  (optional) 

            try
            {
                // Create a user for the bidder in beagel bid
                apiInstance.apiAccountCreateBidderPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountCreateBidderPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelManagers.Models.Bidder | 

try {
    $api_instance->apiAccountCreateBidderPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountCreateBidderPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Bidder->new(); # BeagelManagers.Models.Bidder | 

eval { 
    $api_instance->apiAccountCreateBidderPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountCreateBidderPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelManagers.Models.Bidder |  (optional)

try: 
    # Create a user for the bidder in beagel bid
    api_instance.api_account_create_bidder_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountCreateBidderPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountCreateBidderSocialPost

Create bidder via social authentication


/api/Account/CreateBidderSocial

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/CreateBidderSocial"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Bidder body = ; // BeagelManagers.Models.Bidder | 
        try {
            apiInstance.apiAccountCreateBidderSocialPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountCreateBidderSocialPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Bidder body = ; // BeagelManagers.Models.Bidder | 
        try {
            apiInstance.apiAccountCreateBidderSocialPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountCreateBidderSocialPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Bidder *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Create bidder via social authentication
[apiInstance apiAccountCreateBidderSocialPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Bidder}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountCreateBidderSocialPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelManagers.Models.Bidder(); // BeagelManagers.Models.Bidder |  (optional) 

            try
            {
                // Create bidder via social authentication
                apiInstance.apiAccountCreateBidderSocialPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountCreateBidderSocialPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelManagers.Models.Bidder | 

try {
    $api_instance->apiAccountCreateBidderSocialPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountCreateBidderSocialPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Bidder->new(); # BeagelManagers.Models.Bidder | 

eval { 
    $api_instance->apiAccountCreateBidderSocialPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountCreateBidderSocialPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelManagers.Models.Bidder |  (optional)

try: 
    # Create bidder via social authentication
    api_instance.api_account_create_bidder_social_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountCreateBidderSocialPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountGetAdminUsersGet

Get a list of Admin users (Roles: Admin, SuperAdmin)


/api/Account/GetAdminUsers

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Account/GetAdminUsers"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        try {
            apiInstance.apiAccountGetAdminUsersGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountGetAdminUsersGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        try {
            apiInstance.apiAccountGetAdminUsersGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountGetAdminUsersGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

AccountApi *apiInstance = [[AccountApi alloc] init];

// Get a list of Admin users (Roles: Admin, SuperAdmin)
[apiInstance apiAccountGetAdminUsersGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountGetAdminUsersGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();

            try
            {
                // Get a list of Admin users (Roles: Admin, SuperAdmin)
                apiInstance.apiAccountGetAdminUsersGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountGetAdminUsersGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();

try {
    $api_instance->apiAccountGetAdminUsersGet();
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountGetAdminUsersGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();

eval { 
    $api_instance->apiAccountGetAdminUsersGet();
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountGetAdminUsersGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()

try: 
    # Get a list of Admin users (Roles: Admin, SuperAdmin)
    api_instance.api_account_get_admin_users_get()
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountGetAdminUsersGet: %s\n" % e)

Parameters

Responses

Status: 200 - Success


apiAccountGetBranchUserGet

Gets the branch user by User id (Roles: GroupUser, AgencyUser, BranchUser, Admin, SuperAdmin)


/api/Account/GetBranchUser

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Account/GetBranchUser?UserId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiAccountGetBranchUserGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountGetBranchUserGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiAccountGetBranchUserGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountGetBranchUserGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *userId = userId_example; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Gets the branch user by User id (Roles: GroupUser, AgencyUser, BranchUser, Admin, SuperAdmin)
[apiInstance apiAccountGetBranchUserGetWith:userId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'userId': userId_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountGetBranchUserGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var userId = userId_example;  // String |  (optional) 

            try
            {
                // Gets the branch user by User id (Roles: GroupUser, AgencyUser, BranchUser, Admin, SuperAdmin)
                apiInstance.apiAccountGetBranchUserGet(userId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountGetBranchUserGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$userId = userId_example; // String | 

try {
    $api_instance->apiAccountGetBranchUserGet($userId);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountGetBranchUserGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $userId = userId_example; # String | 

eval { 
    $api_instance->apiAccountGetBranchUserGet(userId => $userId);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountGetBranchUserGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
userId = userId_example # String |  (optional)

try: 
    # Gets the branch user by User id (Roles: GroupUser, AgencyUser, BranchUser, Admin, SuperAdmin)
    api_instance.api_account_get_branch_user_get(userId=userId)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountGetBranchUserGet: %s\n" % e)

Parameters

Query parameters
Name Description
UserId
String

Responses

Status: 200 - Success


apiAccountImportBidderPost

Creates a new bidder (This API call saves the bidder without verification. Password verifications are handled)


/api/Account/ImportBidder

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/ImportBidder"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Bidder body = ; // BeagelManagers.Models.Bidder | 
        try {
            apiInstance.apiAccountImportBidderPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountImportBidderPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Bidder body = ; // BeagelManagers.Models.Bidder | 
        try {
            apiInstance.apiAccountImportBidderPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountImportBidderPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Bidder *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Creates a new bidder (This API call saves the bidder without verification. Password verifications are handled)
[apiInstance apiAccountImportBidderPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Bidder}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountImportBidderPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelManagers.Models.Bidder(); // BeagelManagers.Models.Bidder |  (optional) 

            try
            {
                // Creates a new bidder (This API call saves the bidder without verification. Password verifications are handled)
                apiInstance.apiAccountImportBidderPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountImportBidderPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelManagers.Models.Bidder | 

try {
    $api_instance->apiAccountImportBidderPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountImportBidderPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Bidder->new(); # BeagelManagers.Models.Bidder | 

eval { 
    $api_instance->apiAccountImportBidderPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountImportBidderPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelManagers.Models.Bidder |  (optional)

try: 
    # Creates a new bidder (This API call saves the bidder without verification. Password verifications are handled)
    api_instance.api_account_import_bidder_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountImportBidderPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountLoginPost

Handle postback from username/password login


/api/Account/Login

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/Login"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.LoginViewModel body = ; // BeagelEnterprise.Models.LoginViewModel | 
        try {
            apiInstance.apiAccountLoginPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountLoginPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.LoginViewModel body = ; // BeagelEnterprise.Models.LoginViewModel | 
        try {
            apiInstance.apiAccountLoginPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountLoginPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.LoginViewModel *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Handle postback from username/password login
[apiInstance apiAccountLoginPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.LoginViewModel}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountLoginPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelEnterprise.Models.LoginViewModel(); // BeagelEnterprise.Models.LoginViewModel |  (optional) 

            try
            {
                // Handle postback from username/password login
                apiInstance.apiAccountLoginPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountLoginPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelEnterprise.Models.LoginViewModel | 

try {
    $api_instance->apiAccountLoginPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountLoginPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.LoginViewModel->new(); # BeagelEnterprise.Models.LoginViewModel | 

eval { 
    $api_instance->apiAccountLoginPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountLoginPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelEnterprise.Models.LoginViewModel |  (optional)

try: 
    # Handle postback from username/password login
    api_instance.api_account_login_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountLoginPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountPasscodeRequestBidderPost

Password request for bidder


/api/Account/PasscodeRequestBidder

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Account/PasscodeRequestBidder?Email="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        String email = email_example; // String | 
        try {
            apiInstance.apiAccountPasscodeRequestBidderPost(email);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountPasscodeRequestBidderPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        String email = email_example; // String | 
        try {
            apiInstance.apiAccountPasscodeRequestBidderPost(email);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountPasscodeRequestBidderPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *email = email_example; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Password request for bidder
[apiInstance apiAccountPasscodeRequestBidderPostWith:email
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'email': email_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountPasscodeRequestBidderPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var email = email_example;  // String |  (optional) 

            try
            {
                // Password request for bidder
                apiInstance.apiAccountPasscodeRequestBidderPost(email);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountPasscodeRequestBidderPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$email = email_example; // String | 

try {
    $api_instance->apiAccountPasscodeRequestBidderPost($email);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountPasscodeRequestBidderPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $email = email_example; # String | 

eval { 
    $api_instance->apiAccountPasscodeRequestBidderPost(email => $email);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountPasscodeRequestBidderPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
email = email_example # String |  (optional)

try: 
    # Password request for bidder
    api_instance.api_account_passcode_request_bidder_post(email=email)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountPasscodeRequestBidderPost: %s\n" % e)

Parameters

Query parameters
Name Description
Email
String

Responses

Status: 200 - Success


apiAccountPasscodeRequestPost

Password reset code request by email


/api/Account/PasscodeRequest

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Account/PasscodeRequest?email="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        String email = email_example; // String | 
        try {
            apiInstance.apiAccountPasscodeRequestPost(email);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountPasscodeRequestPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        String email = email_example; // String | 
        try {
            apiInstance.apiAccountPasscodeRequestPost(email);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountPasscodeRequestPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *email = email_example; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Password reset code request by email
[apiInstance apiAccountPasscodeRequestPostWith:email
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'email': email_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountPasscodeRequestPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var email = email_example;  // String |  (optional) 

            try
            {
                // Password reset code request by email
                apiInstance.apiAccountPasscodeRequestPost(email);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountPasscodeRequestPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$email = email_example; // String | 

try {
    $api_instance->apiAccountPasscodeRequestPost($email);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountPasscodeRequestPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $email = email_example; # String | 

eval { 
    $api_instance->apiAccountPasscodeRequestPost(email => $email);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountPasscodeRequestPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
email = email_example # String |  (optional)

try: 
    # Password reset code request by email
    api_instance.api_account_passcode_request_post(email=email)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountPasscodeRequestPost: %s\n" % e)

Parameters

Query parameters
Name Description
email
String

Responses

Status: 200 - Success


apiAccountPasswordRequestPost

Password reset for any user.


/api/Account/PasswordRequest

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/PasswordRequest"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.LoginViewModel body = ; // BeagelEnterprise.Models.LoginViewModel | 
        try {
            apiInstance.apiAccountPasswordRequestPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountPasswordRequestPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.LoginViewModel body = ; // BeagelEnterprise.Models.LoginViewModel | 
        try {
            apiInstance.apiAccountPasswordRequestPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountPasswordRequestPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.LoginViewModel *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Password reset for any user.
[apiInstance apiAccountPasswordRequestPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.LoginViewModel}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountPasswordRequestPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelEnterprise.Models.LoginViewModel(); // BeagelEnterprise.Models.LoginViewModel |  (optional) 

            try
            {
                // Password reset for any user.
                apiInstance.apiAccountPasswordRequestPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountPasswordRequestPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelEnterprise.Models.LoginViewModel | 

try {
    $api_instance->apiAccountPasswordRequestPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountPasswordRequestPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.LoginViewModel->new(); # BeagelEnterprise.Models.LoginViewModel | 

eval { 
    $api_instance->apiAccountPasswordRequestPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountPasswordRequestPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelEnterprise.Models.LoginViewModel |  (optional)

try: 
    # Password reset for any user.
    api_instance.api_account_password_request_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountPasswordRequestPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountPasswordResetCodePost

Resets password for the valid code.


/api/Account/PasswordResetCode

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/PasswordResetCode"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.LoginViewModel body = ; // BeagelEnterprise.Models.LoginViewModel | 
        try {
            apiInstance.apiAccountPasswordResetCodePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountPasswordResetCodePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.LoginViewModel body = ; // BeagelEnterprise.Models.LoginViewModel | 
        try {
            apiInstance.apiAccountPasswordResetCodePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountPasswordResetCodePost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.LoginViewModel *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Resets password for the valid code.
[apiInstance apiAccountPasswordResetCodePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.LoginViewModel}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountPasswordResetCodePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelEnterprise.Models.LoginViewModel(); // BeagelEnterprise.Models.LoginViewModel |  (optional) 

            try
            {
                // Resets password for the valid code.
                apiInstance.apiAccountPasswordResetCodePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountPasswordResetCodePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelEnterprise.Models.LoginViewModel | 

try {
    $api_instance->apiAccountPasswordResetCodePost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountPasswordResetCodePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.LoginViewModel->new(); # BeagelEnterprise.Models.LoginViewModel | 

eval { 
    $api_instance->apiAccountPasswordResetCodePost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountPasswordResetCodePost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelEnterprise.Models.LoginViewModel |  (optional)

try: 
    # Resets password for the valid code.
    api_instance.api_account_password_reset_code_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountPasswordResetCodePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountRegisterAgencyUserPost

Registers a new Agency user (Roles: AgencyUser, Admin, SuperAdmin, GroupUser)


/api/Account/RegisterAgencyUser

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/RegisterAgencyUser"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.AgencyUserDto body = ; // BeagelEnterprise.Models.AgencyUserDto | 
        try {
            apiInstance.apiAccountRegisterAgencyUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountRegisterAgencyUserPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.AgencyUserDto body = ; // BeagelEnterprise.Models.AgencyUserDto | 
        try {
            apiInstance.apiAccountRegisterAgencyUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountRegisterAgencyUserPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.AgencyUserDto *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Registers a new Agency user (Roles: AgencyUser, Admin, SuperAdmin, GroupUser)
[apiInstance apiAccountRegisterAgencyUserPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.AgencyUserDto}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountRegisterAgencyUserPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelEnterprise.Models.AgencyUserDto(); // BeagelEnterprise.Models.AgencyUserDto |  (optional) 

            try
            {
                // Registers a new Agency user (Roles: AgencyUser, Admin, SuperAdmin, GroupUser)
                apiInstance.apiAccountRegisterAgencyUserPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountRegisterAgencyUserPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelEnterprise.Models.AgencyUserDto | 

try {
    $api_instance->apiAccountRegisterAgencyUserPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountRegisterAgencyUserPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.AgencyUserDto->new(); # BeagelEnterprise.Models.AgencyUserDto | 

eval { 
    $api_instance->apiAccountRegisterAgencyUserPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountRegisterAgencyUserPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelEnterprise.Models.AgencyUserDto |  (optional)

try: 
    # Registers a new Agency user (Roles: AgencyUser, Admin, SuperAdmin, GroupUser)
    api_instance.api_account_register_agency_user_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountRegisterAgencyUserPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountRegisterAgentStandAlonePost

Register agent without an agency (Roles: Admin, SuperAdmin, AgencyUser)


/api/Account/RegisterAgentStandAlone

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/RegisterAgentStandAlone"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Agent body = ; // BeagelManagers.Models.Agent | 
        try {
            apiInstance.apiAccountRegisterAgentStandAlonePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountRegisterAgentStandAlonePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Agent body = ; // BeagelManagers.Models.Agent | 
        try {
            apiInstance.apiAccountRegisterAgentStandAlonePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountRegisterAgentStandAlonePost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Agent *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Register agent without an agency (Roles: Admin, SuperAdmin, AgencyUser)
[apiInstance apiAccountRegisterAgentStandAlonePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Agent}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountRegisterAgentStandAlonePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelManagers.Models.Agent(); // BeagelManagers.Models.Agent |  (optional) 

            try
            {
                // Register agent without an agency (Roles: Admin, SuperAdmin, AgencyUser)
                apiInstance.apiAccountRegisterAgentStandAlonePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountRegisterAgentStandAlonePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelManagers.Models.Agent | 

try {
    $api_instance->apiAccountRegisterAgentStandAlonePost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountRegisterAgentStandAlonePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Agent->new(); # BeagelManagers.Models.Agent | 

eval { 
    $api_instance->apiAccountRegisterAgentStandAlonePost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountRegisterAgentStandAlonePost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelManagers.Models.Agent |  (optional)

try: 
    # Register agent without an agency (Roles: Admin, SuperAdmin, AgencyUser)
    api_instance.api_account_register_agent_stand_alone_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountRegisterAgentStandAlonePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountRegisterAgentUserPost

Registers an agent user (Roles: Admin, SuperAdmin, GroupUser, AgencyUser, BranchUser)


/api/Account/RegisterAgentUser

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/RegisterAgentUser"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.AgentDto body = ; // BeagelEnterprise.Models.AgentDto | 
        try {
            apiInstance.apiAccountRegisterAgentUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountRegisterAgentUserPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.AgentDto body = ; // BeagelEnterprise.Models.AgentDto | 
        try {
            apiInstance.apiAccountRegisterAgentUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountRegisterAgentUserPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.AgentDto *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Registers an agent user (Roles: Admin, SuperAdmin, GroupUser, AgencyUser, BranchUser)
[apiInstance apiAccountRegisterAgentUserPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.AgentDto}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountRegisterAgentUserPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelEnterprise.Models.AgentDto(); // BeagelEnterprise.Models.AgentDto |  (optional) 

            try
            {
                // Registers an agent user (Roles: Admin, SuperAdmin, GroupUser, AgencyUser, BranchUser)
                apiInstance.apiAccountRegisterAgentUserPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountRegisterAgentUserPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelEnterprise.Models.AgentDto | 

try {
    $api_instance->apiAccountRegisterAgentUserPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountRegisterAgentUserPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.AgentDto->new(); # BeagelEnterprise.Models.AgentDto | 

eval { 
    $api_instance->apiAccountRegisterAgentUserPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountRegisterAgentUserPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelEnterprise.Models.AgentDto |  (optional)

try: 
    # Registers an agent user (Roles: Admin, SuperAdmin, GroupUser, AgencyUser, BranchUser)
    api_instance.api_account_register_agent_user_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountRegisterAgentUserPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountRegisterBidderByBuyerAgentPost

Register's bidder by buyer's agent (Roles: Agent, AgencyUser, BranchUser)


/api/Account/RegisterBidderByBuyerAgent

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/RegisterBidderByBuyerAgent"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Bidder body = ; // BeagelManagers.Models.Bidder | 
        try {
            apiInstance.apiAccountRegisterBidderByBuyerAgentPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountRegisterBidderByBuyerAgentPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Bidder body = ; // BeagelManagers.Models.Bidder | 
        try {
            apiInstance.apiAccountRegisterBidderByBuyerAgentPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountRegisterBidderByBuyerAgentPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Bidder *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Register's bidder by buyer's agent (Roles: Agent, AgencyUser, BranchUser)
[apiInstance apiAccountRegisterBidderByBuyerAgentPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Bidder}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountRegisterBidderByBuyerAgentPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelManagers.Models.Bidder(); // BeagelManagers.Models.Bidder |  (optional) 

            try
            {
                // Register's bidder by buyer's agent (Roles: Agent, AgencyUser, BranchUser)
                apiInstance.apiAccountRegisterBidderByBuyerAgentPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountRegisterBidderByBuyerAgentPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelManagers.Models.Bidder | 

try {
    $api_instance->apiAccountRegisterBidderByBuyerAgentPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountRegisterBidderByBuyerAgentPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Bidder->new(); # BeagelManagers.Models.Bidder | 

eval { 
    $api_instance->apiAccountRegisterBidderByBuyerAgentPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountRegisterBidderByBuyerAgentPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelManagers.Models.Bidder |  (optional)

try: 
    # Register's bidder by buyer's agent (Roles: Agent, AgencyUser, BranchUser)
    api_instance.api_account_register_bidder_by_buyer_agent_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountRegisterBidderByBuyerAgentPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountRegisterBidderPost

Registers a new bidder in beagel Enterprise (Roles: Agent, AgencyUser, BranchUser)


/api/Account/RegisterBidder

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/RegisterBidder"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Bidder body = ; // BeagelManagers.Models.Bidder | 
        try {
            apiInstance.apiAccountRegisterBidderPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountRegisterBidderPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelManagers.Models.Bidder body = ; // BeagelManagers.Models.Bidder | 
        try {
            apiInstance.apiAccountRegisterBidderPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountRegisterBidderPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Bidder *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Registers a new bidder in beagel Enterprise (Roles: Agent, AgencyUser, BranchUser)
[apiInstance apiAccountRegisterBidderPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Bidder}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountRegisterBidderPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelManagers.Models.Bidder(); // BeagelManagers.Models.Bidder |  (optional) 

            try
            {
                // Registers a new bidder in beagel Enterprise (Roles: Agent, AgencyUser, BranchUser)
                apiInstance.apiAccountRegisterBidderPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountRegisterBidderPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelManagers.Models.Bidder | 

try {
    $api_instance->apiAccountRegisterBidderPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountRegisterBidderPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Bidder->new(); # BeagelManagers.Models.Bidder | 

eval { 
    $api_instance->apiAccountRegisterBidderPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountRegisterBidderPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelManagers.Models.Bidder |  (optional)

try: 
    # Registers a new bidder in beagel Enterprise (Roles: Agent, AgencyUser, BranchUser)
    api_instance.api_account_register_bidder_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountRegisterBidderPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountRegisterGroupUserPost

Register group user (Roles: GroupUser, Admin, SuperAdmin)


/api/Account/RegisterGroupUser

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/RegisterGroupUser"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.GroupUserDto body = ; // BeagelEnterprise.Models.GroupUserDto | 
        try {
            apiInstance.apiAccountRegisterGroupUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountRegisterGroupUserPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.GroupUserDto body = ; // BeagelEnterprise.Models.GroupUserDto | 
        try {
            apiInstance.apiAccountRegisterGroupUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountRegisterGroupUserPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.GroupUserDto *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Register group user (Roles: GroupUser, Admin, SuperAdmin)
[apiInstance apiAccountRegisterGroupUserPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.GroupUserDto}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountRegisterGroupUserPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelEnterprise.Models.GroupUserDto(); // BeagelEnterprise.Models.GroupUserDto |  (optional) 

            try
            {
                // Register group user (Roles: GroupUser, Admin, SuperAdmin)
                apiInstance.apiAccountRegisterGroupUserPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountRegisterGroupUserPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelEnterprise.Models.GroupUserDto | 

try {
    $api_instance->apiAccountRegisterGroupUserPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountRegisterGroupUserPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.GroupUserDto->new(); # BeagelEnterprise.Models.GroupUserDto | 

eval { 
    $api_instance->apiAccountRegisterGroupUserPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountRegisterGroupUserPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelEnterprise.Models.GroupUserDto |  (optional)

try: 
    # Register group user (Roles: GroupUser, Admin, SuperAdmin)
    api_instance.api_account_register_group_user_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountRegisterGroupUserPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountSetPasswordPost

Sets the user password


/api/Account/SetPassword

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Account/SetPassword"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.SetPasswordViewModel body = ; // BeagelEnterprise.Models.SetPasswordViewModel | 
        try {
            apiInstance.apiAccountSetPasswordPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountSetPasswordPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        BeagelEnterprise.Models.SetPasswordViewModel body = ; // BeagelEnterprise.Models.SetPasswordViewModel | 
        try {
            apiInstance.apiAccountSetPasswordPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountSetPasswordPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.SetPasswordViewModel *body = ; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// Sets the user password
[apiInstance apiAccountSetPasswordPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.SetPasswordViewModel}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountSetPasswordPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var body = new BeagelEnterprise.Models.SetPasswordViewModel(); // BeagelEnterprise.Models.SetPasswordViewModel |  (optional) 

            try
            {
                // Sets the user password
                apiInstance.apiAccountSetPasswordPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountSetPasswordPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$body = ; // BeagelEnterprise.Models.SetPasswordViewModel | 

try {
    $api_instance->apiAccountSetPasswordPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountSetPasswordPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.SetPasswordViewModel->new(); # BeagelEnterprise.Models.SetPasswordViewModel | 

eval { 
    $api_instance->apiAccountSetPasswordPost(body => $body);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountSetPasswordPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
body =  # BeagelEnterprise.Models.SetPasswordViewModel |  (optional)

try: 
    # Sets the user password
    api_instance.api_account_set_password_post(body=body)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountSetPasswordPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAccountTwoFactorAuthorizationPost

2F Authentication


/api/Account/TwoFactorAuthorization

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Account/TwoFactorAuthorization?Username=&Token="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AccountApi;

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

public class AccountApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AccountApi apiInstance = new AccountApi();
        String username = username_example; // String | 
        String token = token_example; // String | 
        try {
            apiInstance.apiAccountTwoFactorAuthorizationPost(username, token);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountTwoFactorAuthorizationPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AccountApi;

public class AccountApiExample {

    public static void main(String[] args) {
        AccountApi apiInstance = new AccountApi();
        String username = username_example; // String | 
        String token = token_example; // String | 
        try {
            apiInstance.apiAccountTwoFactorAuthorizationPost(username, token);
        } catch (ApiException e) {
            System.err.println("Exception when calling AccountApi#apiAccountTwoFactorAuthorizationPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *username = username_example; //  (optional)
String *token = token_example; //  (optional)

AccountApi *apiInstance = [[AccountApi alloc] init];

// 2F Authentication
[apiInstance apiAccountTwoFactorAuthorizationPostWith:username
    token:token
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AccountApi()
var opts = { 
  'username': username_example, // {{String}} 
  'token': token_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAccountTwoFactorAuthorizationPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AccountApi();
            var username = username_example;  // String |  (optional) 
            var token = token_example;  // String |  (optional) 

            try
            {
                // 2F Authentication
                apiInstance.apiAccountTwoFactorAuthorizationPost(username, token);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AccountApi.apiAccountTwoFactorAuthorizationPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAccountApi();
$username = username_example; // String | 
$token = token_example; // String | 

try {
    $api_instance->apiAccountTwoFactorAuthorizationPost($username, $token);
} catch (Exception $e) {
    echo 'Exception when calling AccountApi->apiAccountTwoFactorAuthorizationPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AccountApi;


my $api_instance = WWW::SwaggerClient::AccountApi->new();
my $username = username_example; # String | 
my $token = token_example; # String | 

eval { 
    $api_instance->apiAccountTwoFactorAuthorizationPost(username => $username, token => $token);
};
if ($@) {
    warn "Exception when calling AccountApi->apiAccountTwoFactorAuthorizationPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AccountApi()
username = username_example # String |  (optional)
token = token_example # String |  (optional)

try: 
    # 2F Authentication
    api_instance.api_account_two_factor_authorization_post(username=username, token=token)
except ApiException as e:
    print("Exception when calling AccountApi->apiAccountTwoFactorAuthorizationPost: %s\n" % e)

Parameters

Query parameters
Name Description
Username
String
Token
String

Responses

Status: 200 - Success


Admin

apiAdminAddUpdateAdminNotificationStatusPost

Add Update Admin Notification Status (Roles: SuperAdmin, Admin)


/api/Admin/AddUpdateAdminNotificationStatus

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Admin/AddUpdateAdminNotificationStatus"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AdminApi;

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

public class AdminApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AdminApi apiInstance = new AdminApi();
        BeagelManagers.Models.AdminNotificationStatus body = ; // BeagelManagers.Models.AdminNotificationStatus | 
        try {
            apiInstance.apiAdminAddUpdateAdminNotificationStatusPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminAddUpdateAdminNotificationStatusPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AdminApi;

public class AdminApiExample {

    public static void main(String[] args) {
        AdminApi apiInstance = new AdminApi();
        BeagelManagers.Models.AdminNotificationStatus body = ; // BeagelManagers.Models.AdminNotificationStatus | 
        try {
            apiInstance.apiAdminAddUpdateAdminNotificationStatusPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminAddUpdateAdminNotificationStatusPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.AdminNotificationStatus *body = ; //  (optional)

AdminApi *apiInstance = [[AdminApi alloc] init];

// Add Update Admin Notification Status (Roles: SuperAdmin, Admin)
[apiInstance apiAdminAddUpdateAdminNotificationStatusPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AdminApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.AdminNotificationStatus}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAdminAddUpdateAdminNotificationStatusPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AdminApi();
            var body = new BeagelManagers.Models.AdminNotificationStatus(); // BeagelManagers.Models.AdminNotificationStatus |  (optional) 

            try
            {
                // Add Update Admin Notification Status (Roles: SuperAdmin, Admin)
                apiInstance.apiAdminAddUpdateAdminNotificationStatusPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AdminApi.apiAdminAddUpdateAdminNotificationStatusPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAdminApi();
$body = ; // BeagelManagers.Models.AdminNotificationStatus | 

try {
    $api_instance->apiAdminAddUpdateAdminNotificationStatusPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AdminApi->apiAdminAddUpdateAdminNotificationStatusPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AdminApi;


my $api_instance = WWW::SwaggerClient::AdminApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.AdminNotificationStatus->new(); # BeagelManagers.Models.AdminNotificationStatus | 

eval { 
    $api_instance->apiAdminAddUpdateAdminNotificationStatusPost(body => $body);
};
if ($@) {
    warn "Exception when calling AdminApi->apiAdminAddUpdateAdminNotificationStatusPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AdminApi()
body =  # BeagelManagers.Models.AdminNotificationStatus |  (optional)

try: 
    # Add Update Admin Notification Status (Roles: SuperAdmin, Admin)
    api_instance.api_admin_add_update_admin_notification_status_post(body=body)
except ApiException as e:
    print("Exception when calling AdminApi->apiAdminAddUpdateAdminNotificationStatusPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAdminAddUpdateUpdateSettingsPost

Add Updates Admin settings (Roles: SuperAdmin, Admin)


/api/Admin/AddUpdateUpdateSettings

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Admin/AddUpdateUpdateSettings"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AdminApi;

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

public class AdminApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AdminApi apiInstance = new AdminApi();
        BeagelEnterprise.Models.AdminSettingDto body = ; // BeagelEnterprise.Models.AdminSettingDto | 
        try {
            apiInstance.apiAdminAddUpdateUpdateSettingsPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminAddUpdateUpdateSettingsPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AdminApi;

public class AdminApiExample {

    public static void main(String[] args) {
        AdminApi apiInstance = new AdminApi();
        BeagelEnterprise.Models.AdminSettingDto body = ; // BeagelEnterprise.Models.AdminSettingDto | 
        try {
            apiInstance.apiAdminAddUpdateUpdateSettingsPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminAddUpdateUpdateSettingsPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.AdminSettingDto *body = ; //  (optional)

AdminApi *apiInstance = [[AdminApi alloc] init];

// Add Updates Admin settings (Roles: SuperAdmin, Admin)
[apiInstance apiAdminAddUpdateUpdateSettingsPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AdminApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.AdminSettingDto}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAdminAddUpdateUpdateSettingsPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AdminApi();
            var body = new BeagelEnterprise.Models.AdminSettingDto(); // BeagelEnterprise.Models.AdminSettingDto |  (optional) 

            try
            {
                // Add Updates Admin settings (Roles: SuperAdmin, Admin)
                apiInstance.apiAdminAddUpdateUpdateSettingsPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AdminApi.apiAdminAddUpdateUpdateSettingsPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAdminApi();
$body = ; // BeagelEnterprise.Models.AdminSettingDto | 

try {
    $api_instance->apiAdminAddUpdateUpdateSettingsPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AdminApi->apiAdminAddUpdateUpdateSettingsPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AdminApi;


my $api_instance = WWW::SwaggerClient::AdminApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.AdminSettingDto->new(); # BeagelEnterprise.Models.AdminSettingDto | 

eval { 
    $api_instance->apiAdminAddUpdateUpdateSettingsPost(body => $body);
};
if ($@) {
    warn "Exception when calling AdminApi->apiAdminAddUpdateUpdateSettingsPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AdminApi()
body =  # BeagelEnterprise.Models.AdminSettingDto |  (optional)

try: 
    # Add Updates Admin settings (Roles: SuperAdmin, Admin)
    api_instance.api_admin_add_update_update_settings_post(body=body)
except ApiException as e:
    print("Exception when calling AdminApi->apiAdminAddUpdateUpdateSettingsPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAdminAddUpdateUserManualPost

Add Update user manuals (Roles: SuperAdmin, Admin)


/api/Admin/AddUpdateUserManual

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: multipart/form-data"\
"//api/Admin/AddUpdateUserManual"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AdminApi;

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

public class AdminApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AdminApi apiInstance = new AdminApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer id = 56; // Integer | 
        String userManualName = userManualName_example; // String | 
        String userManualType = userManualType_example; // String | 
        Date dateCreated = 2013-10-20T19:20:30+01:00; // Date | 
        String userManualPath = userManualPath_example; // String | 
        Boolean status = true; // Boolean | 
        try {
            apiInstance.apiAdminAddUpdateUserManualPost(file, id, userManualName, userManualType, dateCreated, userManualPath, status);
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminAddUpdateUserManualPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AdminApi;

public class AdminApiExample {

    public static void main(String[] args) {
        AdminApi apiInstance = new AdminApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer id = 56; // Integer | 
        String userManualName = userManualName_example; // String | 
        String userManualType = userManualType_example; // String | 
        Date dateCreated = 2013-10-20T19:20:30+01:00; // Date | 
        String userManualPath = userManualPath_example; // String | 
        Boolean status = true; // Boolean | 
        try {
            apiInstance.apiAdminAddUpdateUserManualPost(file, id, userManualName, userManualType, dateCreated, userManualPath, status);
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminAddUpdateUserManualPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
array[byte[]] *file = ; //  (optional)
Integer *id = 56; //  (optional)
String *userManualName = userManualName_example; //  (optional)
String *userManualType = userManualType_example; //  (optional)
Date *dateCreated = 2013-10-20T19:20:30+01:00; //  (optional)
String *userManualPath = userManualPath_example; //  (optional)
Boolean *status = true; //  (optional)

AdminApi *apiInstance = [[AdminApi alloc] init];

// Add Update user manuals (Roles: SuperAdmin, Admin)
[apiInstance apiAdminAddUpdateUserManualPostWith:file
    id:id
    userManualName:userManualName
    userManualType:userManualType
    dateCreated:dateCreated
    userManualPath:userManualPath
    status:status
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AdminApi()
var opts = { 
  'file':  // {{array[byte[]]}} 
  'id': 56 // {{Integer}} 
  'userManualName': userManualName_example // {{String}} 
  'userManualType': userManualType_example // {{String}} 
  'dateCreated': 2013-10-20T19:20:30+01:00 // {{Date}} 
  'userManualPath': userManualPath_example // {{String}} 
  'status': true // {{Boolean}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAdminAddUpdateUserManualPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AdminApi();
            var file = new array[byte[]](); // array[byte[]] |  (optional) 
            var id = 56;  // Integer |  (optional) 
            var userManualName = userManualName_example;  // String |  (optional) 
            var userManualType = userManualType_example;  // String |  (optional) 
            var dateCreated = 2013-10-20T19:20:30+01:00;  // Date |  (optional) 
            var userManualPath = userManualPath_example;  // String |  (optional) 
            var status = true;  // Boolean |  (optional) 

            try
            {
                // Add Update user manuals (Roles: SuperAdmin, Admin)
                apiInstance.apiAdminAddUpdateUserManualPost(file, id, userManualName, userManualType, dateCreated, userManualPath, status);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AdminApi.apiAdminAddUpdateUserManualPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAdminApi();
$file = ; // array[byte[]] | 
$id = 56; // Integer | 
$userManualName = userManualName_example; // String | 
$userManualType = userManualType_example; // String | 
$dateCreated = 2013-10-20T19:20:30+01:00; // Date | 
$userManualPath = userManualPath_example; // String | 
$status = true; // Boolean | 

try {
    $api_instance->apiAdminAddUpdateUserManualPost($file, $id, $userManualName, $userManualType, $dateCreated, $userManualPath, $status);
} catch (Exception $e) {
    echo 'Exception when calling AdminApi->apiAdminAddUpdateUserManualPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AdminApi;


my $api_instance = WWW::SwaggerClient::AdminApi->new();
my $file = []; # array[byte[]] | 
my $id = 56; # Integer | 
my $userManualName = userManualName_example; # String | 
my $userManualType = userManualType_example; # String | 
my $dateCreated = 2013-10-20T19:20:30+01:00; # Date | 
my $userManualPath = userManualPath_example; # String | 
my $status = true; # Boolean | 

eval { 
    $api_instance->apiAdminAddUpdateUserManualPost(file => $file, id => $id, userManualName => $userManualName, userManualType => $userManualType, dateCreated => $dateCreated, userManualPath => $userManualPath, status => $status);
};
if ($@) {
    warn "Exception when calling AdminApi->apiAdminAddUpdateUserManualPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AdminApi()
file =  # array[byte[]] |  (optional)
id = 56 # Integer |  (optional)
userManualName = userManualName_example # String |  (optional)
userManualType = userManualType_example # String |  (optional)
dateCreated = 2013-10-20T19:20:30+01:00 # Date |  (optional)
userManualPath = userManualPath_example # String |  (optional)
status = true # Boolean |  (optional)

try: 
    # Add Update user manuals (Roles: SuperAdmin, Admin)
    api_instance.api_admin_add_update_user_manual_post(file=file, id=id, userManualName=userManualName, userManualType=userManualType, dateCreated=dateCreated, userManualPath=userManualPath, status=status)
except ApiException as e:
    print("Exception when calling AdminApi->apiAdminAddUpdateUserManualPost: %s\n" % e)

Parameters

Form parameters
Name Description
File
array[byte[]] (binary)
Id
Integer (int32)
UserManualName
String
UserManualType
String
DateCreated
Date (date-time)
UserManualPath
String
Status
Boolean

Responses

Status: 200 - Success


apiAdminAddUpdateWebhooksPost

Add updates webhook (Roles: SuperAdmin, Admin, AgencyUser)


/api/Admin/AddUpdateWebhooks

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Admin/AddUpdateWebhooks"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AdminApi;

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

public class AdminApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AdminApi apiInstance = new AdminApi();
        BeagelManagers.Models.Webhooks body = ; // BeagelManagers.Models.Webhooks | 
        try {
            apiInstance.apiAdminAddUpdateWebhooksPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminAddUpdateWebhooksPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AdminApi;

public class AdminApiExample {

    public static void main(String[] args) {
        AdminApi apiInstance = new AdminApi();
        BeagelManagers.Models.Webhooks body = ; // BeagelManagers.Models.Webhooks | 
        try {
            apiInstance.apiAdminAddUpdateWebhooksPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminAddUpdateWebhooksPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Webhooks *body = ; //  (optional)

AdminApi *apiInstance = [[AdminApi alloc] init];

// Add updates webhook (Roles: SuperAdmin, Admin, AgencyUser)
[apiInstance apiAdminAddUpdateWebhooksPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AdminApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Webhooks}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAdminAddUpdateWebhooksPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AdminApi();
            var body = new BeagelManagers.Models.Webhooks(); // BeagelManagers.Models.Webhooks |  (optional) 

            try
            {
                // Add updates webhook (Roles: SuperAdmin, Admin, AgencyUser)
                apiInstance.apiAdminAddUpdateWebhooksPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AdminApi.apiAdminAddUpdateWebhooksPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAdminApi();
$body = ; // BeagelManagers.Models.Webhooks | 

try {
    $api_instance->apiAdminAddUpdateWebhooksPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AdminApi->apiAdminAddUpdateWebhooksPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AdminApi;


my $api_instance = WWW::SwaggerClient::AdminApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Webhooks->new(); # BeagelManagers.Models.Webhooks | 

eval { 
    $api_instance->apiAdminAddUpdateWebhooksPost(body => $body);
};
if ($@) {
    warn "Exception when calling AdminApi->apiAdminAddUpdateWebhooksPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AdminApi()
body =  # BeagelManagers.Models.Webhooks |  (optional)

try: 
    # Add updates webhook (Roles: SuperAdmin, Admin, AgencyUser)
    api_instance.api_admin_add_update_webhooks_post(body=body)
except ApiException as e:
    print("Exception when calling AdminApi->apiAdminAddUpdateWebhooksPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAdminDeleteUserManualDelete

Delete User Manual by id (Roles: SuperAdmin, Admin)


/api/Admin/DeleteUserManual

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Admin/DeleteUserManual?Id=&ManualType=&FileName="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AdminApi;

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

public class AdminApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AdminApi apiInstance = new AdminApi();
        Integer id = 56; // Integer | 
        String manualType = manualType_example; // String | 
        String fileName = fileName_example; // String | 
        try {
            apiInstance.apiAdminDeleteUserManualDelete(id, manualType, fileName);
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminDeleteUserManualDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AdminApi;

public class AdminApiExample {

    public static void main(String[] args) {
        AdminApi apiInstance = new AdminApi();
        Integer id = 56; // Integer | 
        String manualType = manualType_example; // String | 
        String fileName = fileName_example; // String | 
        try {
            apiInstance.apiAdminDeleteUserManualDelete(id, manualType, fileName);
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminDeleteUserManualDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  (optional)
String *manualType = manualType_example; //  (optional)
String *fileName = fileName_example; //  (optional)

AdminApi *apiInstance = [[AdminApi alloc] init];

// Delete User Manual by id (Roles: SuperAdmin, Admin)
[apiInstance apiAdminDeleteUserManualDeleteWith:id
    manualType:manualType
    fileName:fileName
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AdminApi()
var opts = { 
  'id': 56, // {{Integer}} 
  'manualType': manualType_example, // {{String}} 
  'fileName': fileName_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAdminDeleteUserManualDelete(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AdminApi();
            var id = 56;  // Integer |  (optional) 
            var manualType = manualType_example;  // String |  (optional) 
            var fileName = fileName_example;  // String |  (optional) 

            try
            {
                // Delete User Manual by id (Roles: SuperAdmin, Admin)
                apiInstance.apiAdminDeleteUserManualDelete(id, manualType, fileName);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AdminApi.apiAdminDeleteUserManualDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAdminApi();
$id = 56; // Integer | 
$manualType = manualType_example; // String | 
$fileName = fileName_example; // String | 

try {
    $api_instance->apiAdminDeleteUserManualDelete($id, $manualType, $fileName);
} catch (Exception $e) {
    echo 'Exception when calling AdminApi->apiAdminDeleteUserManualDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AdminApi;


my $api_instance = WWW::SwaggerClient::AdminApi->new();
my $id = 56; # Integer | 
my $manualType = manualType_example; # String | 
my $fileName = fileName_example; # String | 

eval { 
    $api_instance->apiAdminDeleteUserManualDelete(id => $id, manualType => $manualType, fileName => $fileName);
};
if ($@) {
    warn "Exception when calling AdminApi->apiAdminDeleteUserManualDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AdminApi()
id = 56 # Integer |  (optional)
manualType = manualType_example # String |  (optional)
fileName = fileName_example # String |  (optional)

try: 
    # Delete User Manual by id (Roles: SuperAdmin, Admin)
    api_instance.api_admin_delete_user_manual_delete(id=id, manualType=manualType, fileName=fileName)
except ApiException as e:
    print("Exception when calling AdminApi->apiAdminDeleteUserManualDelete: %s\n" % e)

Parameters

Query parameters
Name Description
Id
Integer (int32)
ManualType
String
FileName
String

Responses

Status: 200 - Success


apiAdminGetAdminNotificationStatusGet

Get admin notification statuses (Roles: SuperAdmin, Admin)


/api/Admin/GetAdminNotificationStatus

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Admin/GetAdminNotificationStatus"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AdminApi;

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

public class AdminApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AdminApi apiInstance = new AdminApi();
        try {
            apiInstance.apiAdminGetAdminNotificationStatusGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminGetAdminNotificationStatusGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AdminApi;

public class AdminApiExample {

    public static void main(String[] args) {
        AdminApi apiInstance = new AdminApi();
        try {
            apiInstance.apiAdminGetAdminNotificationStatusGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminGetAdminNotificationStatusGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

AdminApi *apiInstance = [[AdminApi alloc] init];

// Get admin notification statuses (Roles: SuperAdmin, Admin)
[apiInstance apiAdminGetAdminNotificationStatusGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AdminApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAdminGetAdminNotificationStatusGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AdminApi();

            try
            {
                // Get admin notification statuses (Roles: SuperAdmin, Admin)
                apiInstance.apiAdminGetAdminNotificationStatusGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AdminApi.apiAdminGetAdminNotificationStatusGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAdminApi();

try {
    $api_instance->apiAdminGetAdminNotificationStatusGet();
} catch (Exception $e) {
    echo 'Exception when calling AdminApi->apiAdminGetAdminNotificationStatusGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AdminApi;


my $api_instance = WWW::SwaggerClient::AdminApi->new();

eval { 
    $api_instance->apiAdminGetAdminNotificationStatusGet();
};
if ($@) {
    warn "Exception when calling AdminApi->apiAdminGetAdminNotificationStatusGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AdminApi()

try: 
    # Get admin notification statuses (Roles: SuperAdmin, Admin)
    api_instance.api_admin_get_admin_notification_status_get()
except ApiException as e:
    print("Exception when calling AdminApi->apiAdminGetAdminNotificationStatusGet: %s\n" % e)

Parameters

Responses

Status: 200 - Success


apiAdminGetUserManualsGet

Get user manuals (Roles: All)


/api/Admin/GetUserManuals

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Admin/GetUserManuals"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AdminApi;

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

public class AdminApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AdminApi apiInstance = new AdminApi();
        try {
            apiInstance.apiAdminGetUserManualsGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminGetUserManualsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AdminApi;

public class AdminApiExample {

    public static void main(String[] args) {
        AdminApi apiInstance = new AdminApi();
        try {
            apiInstance.apiAdminGetUserManualsGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminGetUserManualsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

AdminApi *apiInstance = [[AdminApi alloc] init];

// Get user manuals (Roles: All)
[apiInstance apiAdminGetUserManualsGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AdminApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAdminGetUserManualsGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AdminApi();

            try
            {
                // Get user manuals (Roles: All)
                apiInstance.apiAdminGetUserManualsGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AdminApi.apiAdminGetUserManualsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAdminApi();

try {
    $api_instance->apiAdminGetUserManualsGet();
} catch (Exception $e) {
    echo 'Exception when calling AdminApi->apiAdminGetUserManualsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AdminApi;


my $api_instance = WWW::SwaggerClient::AdminApi->new();

eval { 
    $api_instance->apiAdminGetUserManualsGet();
};
if ($@) {
    warn "Exception when calling AdminApi->apiAdminGetUserManualsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AdminApi()

try: 
    # Get user manuals (Roles: All)
    api_instance.api_admin_get_user_manuals_get()
except ApiException as e:
    print("Exception when calling AdminApi->apiAdminGetUserManualsGet: %s\n" % e)

Parameters

Responses

Status: 200 - Success


apiAdminGetWebhookByAgencyIdAndEventIdGet

Get webhook by agency id and event Id (Roles: SuperAdmin, Admin, AgencyUser)


/api/Admin/GetWebhookByAgencyIdAndEventId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Admin/GetWebhookByAgencyIdAndEventId?AgencyId=&EventId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AdminApi;

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

public class AdminApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AdminApi apiInstance = new AdminApi();
        Integer agencyId = 56; // Integer | 
        Integer eventId = 56; // Integer | 
        try {
            apiInstance.apiAdminGetWebhookByAgencyIdAndEventIdGet(agencyId, eventId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminGetWebhookByAgencyIdAndEventIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AdminApi;

public class AdminApiExample {

    public static void main(String[] args) {
        AdminApi apiInstance = new AdminApi();
        Integer agencyId = 56; // Integer | 
        Integer eventId = 56; // Integer | 
        try {
            apiInstance.apiAdminGetWebhookByAgencyIdAndEventIdGet(agencyId, eventId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AdminApi#apiAdminGetWebhookByAgencyIdAndEventIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)
Integer *eventId = 56; //  (optional)

AdminApi *apiInstance = [[AdminApi alloc] init];

// Get webhook by agency id and event Id (Roles: SuperAdmin, Admin, AgencyUser)
[apiInstance apiAdminGetWebhookByAgencyIdAndEventIdGetWith:agencyId
    eventId:eventId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AdminApi()
var opts = { 
  'agencyId': 56, // {{Integer}} 
  'eventId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAdminGetWebhookByAgencyIdAndEventIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AdminApi();
            var agencyId = 56;  // Integer |  (optional) 
            var eventId = 56;  // Integer |  (optional) 

            try
            {
                // Get webhook by agency id and event Id (Roles: SuperAdmin, Admin, AgencyUser)
                apiInstance.apiAdminGetWebhookByAgencyIdAndEventIdGet(agencyId, eventId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AdminApi.apiAdminGetWebhookByAgencyIdAndEventIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAdminApi();
$agencyId = 56; // Integer | 
$eventId = 56; // Integer | 

try {
    $api_instance->apiAdminGetWebhookByAgencyIdAndEventIdGet($agencyId, $eventId);
} catch (Exception $e) {
    echo 'Exception when calling AdminApi->apiAdminGetWebhookByAgencyIdAndEventIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AdminApi;


my $api_instance = WWW::SwaggerClient::AdminApi->new();
my $agencyId = 56; # Integer | 
my $eventId = 56; # Integer | 

eval { 
    $api_instance->apiAdminGetWebhookByAgencyIdAndEventIdGet(agencyId => $agencyId, eventId => $eventId);
};
if ($@) {
    warn "Exception when calling AdminApi->apiAdminGetWebhookByAgencyIdAndEventIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AdminApi()
agencyId = 56 # Integer |  (optional)
eventId = 56 # Integer |  (optional)

try: 
    # Get webhook by agency id and event Id (Roles: SuperAdmin, Admin, AgencyUser)
    api_instance.api_admin_get_webhook_by_agency_id_and_event_id_get(agencyId=agencyId, eventId=eventId)
except ApiException as e:
    print("Exception when calling AdminApi->apiAdminGetWebhookByAgencyIdAndEventIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)
EventId
Integer (int32)

Responses

Status: 200 - Success


Agency

apiAgencyAddUpdateAgencyLogoPost


/api/Agency/AddUpdateAgencyLogo

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: multipart/form-data"\
"//api/Agency/AddUpdateAgencyLogo"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AgencyApi;

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

public class AgencyApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AgencyApi apiInstance = new AgencyApi();
        byte[] agencyImage = agencyImage_example; // byte[] | 
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiAgencyAddUpdateAgencyLogoPost(agencyImage, agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyAddUpdateAgencyLogoPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AgencyApi;

public class AgencyApiExample {

    public static void main(String[] args) {
        AgencyApi apiInstance = new AgencyApi();
        byte[] agencyImage = agencyImage_example; // byte[] | 
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiAgencyAddUpdateAgencyLogoPost(agencyImage, agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyAddUpdateAgencyLogoPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
byte[] *agencyImage = agencyImage_example; //  (optional)
Integer *agencyId = 56; //  (optional)

AgencyApi *apiInstance = [[AgencyApi alloc] init];

[apiInstance apiAgencyAddUpdateAgencyLogoPostWith:agencyImage
    agencyId:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AgencyApi()
var opts = { 
  'agencyImage': agencyImage_example // {{byte[]}} 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAgencyAddUpdateAgencyLogoPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AgencyApi();
            var agencyImage = agencyImage_example;  // byte[] |  (optional) 
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                apiInstance.apiAgencyAddUpdateAgencyLogoPost(agencyImage, agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AgencyApi.apiAgencyAddUpdateAgencyLogoPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAgencyApi();
$agencyImage = agencyImage_example; // byte[] | 
$agencyId = 56; // Integer | 

try {
    $api_instance->apiAgencyAddUpdateAgencyLogoPost($agencyImage, $agencyId);
} catch (Exception $e) {
    echo 'Exception when calling AgencyApi->apiAgencyAddUpdateAgencyLogoPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AgencyApi;


my $api_instance = WWW::SwaggerClient::AgencyApi->new();
my $agencyImage = agencyImage_example; # byte[] | 
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiAgencyAddUpdateAgencyLogoPost(agencyImage => $agencyImage, agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling AgencyApi->apiAgencyAddUpdateAgencyLogoPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AgencyApi()
agencyImage = agencyImage_example # byte[] |  (optional)
agencyId = 56 # Integer |  (optional)

try: 
    api_instance.api_agency_add_update_agency_logo_post(agencyImage=agencyImage, agencyId=agencyId)
except ApiException as e:
    print("Exception when calling AgencyApi->apiAgencyAddUpdateAgencyLogoPost: %s\n" % e)

Parameters

Form parameters
Name Description
AgencyImage
byte[] (binary)
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiAgencyAddUpdateAgencyPost

Add or updates the agency (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)


/api/Agency/AddUpdateAgency

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Agency/AddUpdateAgency"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AgencyApi;

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

public class AgencyApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AgencyApi apiInstance = new AgencyApi();
        BeagelManagers.Models.Agency body = ; // BeagelManagers.Models.Agency | 
        try {
            apiInstance.apiAgencyAddUpdateAgencyPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyAddUpdateAgencyPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AgencyApi;

public class AgencyApiExample {

    public static void main(String[] args) {
        AgencyApi apiInstance = new AgencyApi();
        BeagelManagers.Models.Agency body = ; // BeagelManagers.Models.Agency | 
        try {
            apiInstance.apiAgencyAddUpdateAgencyPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyAddUpdateAgencyPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Agency *body = ; //  (optional)

AgencyApi *apiInstance = [[AgencyApi alloc] init];

// Add or updates the agency (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
[apiInstance apiAgencyAddUpdateAgencyPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AgencyApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Agency}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAgencyAddUpdateAgencyPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AgencyApi();
            var body = new BeagelManagers.Models.Agency(); // BeagelManagers.Models.Agency |  (optional) 

            try
            {
                // Add or updates the agency (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
                apiInstance.apiAgencyAddUpdateAgencyPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AgencyApi.apiAgencyAddUpdateAgencyPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAgencyApi();
$body = ; // BeagelManagers.Models.Agency | 

try {
    $api_instance->apiAgencyAddUpdateAgencyPost($body);
} catch (Exception $e) {
    echo 'Exception when calling AgencyApi->apiAgencyAddUpdateAgencyPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AgencyApi;


my $api_instance = WWW::SwaggerClient::AgencyApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Agency->new(); # BeagelManagers.Models.Agency | 

eval { 
    $api_instance->apiAgencyAddUpdateAgencyPost(body => $body);
};
if ($@) {
    warn "Exception when calling AgencyApi->apiAgencyAddUpdateAgencyPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AgencyApi()
body =  # BeagelManagers.Models.Agency |  (optional)

try: 
    # Add or updates the agency (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
    api_instance.api_agency_add_update_agency_post(body=body)
except ApiException as e:
    print("Exception when calling AgencyApi->apiAgencyAddUpdateAgencyPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiAgencyGetAgencyGet

Get Agency by agency id (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)


/api/Agency/GetAgency

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Agency/GetAgency?agencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AgencyApi;

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

public class AgencyApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AgencyApi apiInstance = new AgencyApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiAgencyGetAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyGetAgencyGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AgencyApi;

public class AgencyApiExample {

    public static void main(String[] args) {
        AgencyApi apiInstance = new AgencyApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiAgencyGetAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyGetAgencyGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

AgencyApi *apiInstance = [[AgencyApi alloc] init];

// Get Agency by agency id (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
[apiInstance apiAgencyGetAgencyGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AgencyApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAgencyGetAgencyGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AgencyApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // Get Agency by agency id (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
                apiInstance.apiAgencyGetAgencyGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AgencyApi.apiAgencyGetAgencyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAgencyApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiAgencyGetAgencyGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling AgencyApi->apiAgencyGetAgencyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AgencyApi;


my $api_instance = WWW::SwaggerClient::AgencyApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiAgencyGetAgencyGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling AgencyApi->apiAgencyGetAgencyGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AgencyApi()
agencyId = 56 # Integer |  (optional)

try: 
    # Get Agency by agency id (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
    api_instance.api_agency_get_agency_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling AgencyApi->apiAgencyGetAgencyGet: %s\n" % e)

Parameters

Query parameters
Name Description
agencyId
Integer (int32)

Responses

Status: 200 - Success


apiAgencyGetAgencyNotificationTemplateByIdGet

Get Agency templates by id (Roles: Admin, SuperAdmin, GroupUser)


/api/Agency/GetAgencyNotificationTemplateById

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Agency/GetAgencyNotificationTemplateById?Id="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AgencyApi;

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

public class AgencyApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AgencyApi apiInstance = new AgencyApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiAgencyGetAgencyNotificationTemplateByIdGet(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyGetAgencyNotificationTemplateByIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AgencyApi;

public class AgencyApiExample {

    public static void main(String[] args) {
        AgencyApi apiInstance = new AgencyApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiAgencyGetAgencyNotificationTemplateByIdGet(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyGetAgencyNotificationTemplateByIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  (optional)

AgencyApi *apiInstance = [[AgencyApi alloc] init];

// Get Agency templates by id (Roles: Admin, SuperAdmin, GroupUser)
[apiInstance apiAgencyGetAgencyNotificationTemplateByIdGetWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AgencyApi()
var opts = { 
  'id': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAgencyGetAgencyNotificationTemplateByIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AgencyApi();
            var id = 56;  // Integer |  (optional) 

            try
            {
                // Get Agency templates by id (Roles: Admin, SuperAdmin, GroupUser)
                apiInstance.apiAgencyGetAgencyNotificationTemplateByIdGet(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AgencyApi.apiAgencyGetAgencyNotificationTemplateByIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAgencyApi();
$id = 56; // Integer | 

try {
    $api_instance->apiAgencyGetAgencyNotificationTemplateByIdGet($id);
} catch (Exception $e) {
    echo 'Exception when calling AgencyApi->apiAgencyGetAgencyNotificationTemplateByIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AgencyApi;


my $api_instance = WWW::SwaggerClient::AgencyApi->new();
my $id = 56; # Integer | 

eval { 
    $api_instance->apiAgencyGetAgencyNotificationTemplateByIdGet(id => $id);
};
if ($@) {
    warn "Exception when calling AgencyApi->apiAgencyGetAgencyNotificationTemplateByIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AgencyApi()
id = 56 # Integer |  (optional)

try: 
    # Get Agency templates by id (Roles: Admin, SuperAdmin, GroupUser)
    api_instance.api_agency_get_agency_notification_template_by_id_get(id=id)
except ApiException as e:
    print("Exception when calling AgencyApi->apiAgencyGetAgencyNotificationTemplateByIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
Id
Integer (int32)

Responses

Status: 200 - Success


apiAgencyGetAgencyNotificationTemplatesGet

Returns the list of agency notification templates for a given Agency (Roles: Admin, SuperAdmin, GroupUser)


/api/Agency/GetAgencyNotificationTemplates

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Agency/GetAgencyNotificationTemplates?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AgencyApi;

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

public class AgencyApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AgencyApi apiInstance = new AgencyApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiAgencyGetAgencyNotificationTemplatesGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyGetAgencyNotificationTemplatesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AgencyApi;

public class AgencyApiExample {

    public static void main(String[] args) {
        AgencyApi apiInstance = new AgencyApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiAgencyGetAgencyNotificationTemplatesGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyGetAgencyNotificationTemplatesGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

AgencyApi *apiInstance = [[AgencyApi alloc] init];

// Returns the list of agency notification templates for a given Agency (Roles: Admin, SuperAdmin, GroupUser)
[apiInstance apiAgencyGetAgencyNotificationTemplatesGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AgencyApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAgencyGetAgencyNotificationTemplatesGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AgencyApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // Returns the list of agency notification templates for a given Agency (Roles: Admin, SuperAdmin, GroupUser)
                apiInstance.apiAgencyGetAgencyNotificationTemplatesGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AgencyApi.apiAgencyGetAgencyNotificationTemplatesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAgencyApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiAgencyGetAgencyNotificationTemplatesGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling AgencyApi->apiAgencyGetAgencyNotificationTemplatesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AgencyApi;


my $api_instance = WWW::SwaggerClient::AgencyApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiAgencyGetAgencyNotificationTemplatesGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling AgencyApi->apiAgencyGetAgencyNotificationTemplatesGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AgencyApi()
agencyId = 56 # Integer |  (optional)

try: 
    # Returns the list of agency notification templates for a given Agency (Roles: Admin, SuperAdmin, GroupUser)
    api_instance.api_agency_get_agency_notification_templates_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling AgencyApi->apiAgencyGetAgencyNotificationTemplatesGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiAgencyGetAllAgenciesGet

Get All the agencies (Roles: Admin, SuperAdmin, GroupUser)


/api/Agency/GetAllAgencies

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Agency/GetAllAgencies?GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AgencyApi;

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

public class AgencyApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AgencyApi apiInstance = new AgencyApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiAgencyGetAllAgenciesGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyGetAllAgenciesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AgencyApi;

public class AgencyApiExample {

    public static void main(String[] args) {
        AgencyApi apiInstance = new AgencyApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiAgencyGetAllAgenciesGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyGetAllAgenciesGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional) (default to 0)

AgencyApi *apiInstance = [[AgencyApi alloc] init];

// Get All the agencies (Roles: Admin, SuperAdmin, GroupUser)
[apiInstance apiAgencyGetAllAgenciesGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AgencyApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAgencyGetAllAgenciesGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AgencyApi();
            var groupId = 56;  // Integer |  (optional)  (default to 0)

            try
            {
                // Get All the agencies (Roles: Admin, SuperAdmin, GroupUser)
                apiInstance.apiAgencyGetAllAgenciesGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AgencyApi.apiAgencyGetAllAgenciesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAgencyApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiAgencyGetAllAgenciesGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling AgencyApi->apiAgencyGetAllAgenciesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AgencyApi;


my $api_instance = WWW::SwaggerClient::AgencyApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiAgencyGetAllAgenciesGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling AgencyApi->apiAgencyGetAllAgenciesGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AgencyApi()
groupId = 56 # Integer |  (optional) (default to 0)

try: 
    # Get All the agencies (Roles: Admin, SuperAdmin, GroupUser)
    api_instance.api_agency_get_all_agencies_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling AgencyApi->apiAgencyGetAllAgenciesGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiAgencyGetAllAgencyNotificationsGet

Get All agncy templates


/api/Agency/GetAllAgencyNotifications

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Agency/GetAllAgencyNotifications?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AgencyApi;

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

public class AgencyApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AgencyApi apiInstance = new AgencyApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiAgencyGetAllAgencyNotificationsGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyGetAllAgencyNotificationsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AgencyApi;

public class AgencyApiExample {

    public static void main(String[] args) {
        AgencyApi apiInstance = new AgencyApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiAgencyGetAllAgencyNotificationsGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyGetAllAgencyNotificationsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

AgencyApi *apiInstance = [[AgencyApi alloc] init];

// Get All agncy templates
[apiInstance apiAgencyGetAllAgencyNotificationsGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AgencyApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAgencyGetAllAgencyNotificationsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AgencyApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // Get All agncy templates
                apiInstance.apiAgencyGetAllAgencyNotificationsGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AgencyApi.apiAgencyGetAllAgencyNotificationsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAgencyApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiAgencyGetAllAgencyNotificationsGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling AgencyApi->apiAgencyGetAllAgencyNotificationsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AgencyApi;


my $api_instance = WWW::SwaggerClient::AgencyApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiAgencyGetAllAgencyNotificationsGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling AgencyApi->apiAgencyGetAllAgencyNotificationsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AgencyApi()
agencyId = 56 # Integer |  (optional)

try: 
    # Get All agncy templates
    api_instance.api_agency_get_all_agency_notifications_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling AgencyApi->apiAgencyGetAllAgencyNotificationsGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiAgencyUpdateAgencyNotificationTemplatePost

Updates an agency notification template (Roles: Admin, SuperAdmin, GroupUser)


/api/Agency/UpdateAgencyNotificationTemplate

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Agency/UpdateAgencyNotificationTemplate"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AgencyApi;

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

public class AgencyApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        AgencyApi apiInstance = new AgencyApi();
        BeagelManagers.Models.AgencyNotificationTemplates body = ; // BeagelManagers.Models.AgencyNotificationTemplates | 
        try {
            apiInstance.apiAgencyUpdateAgencyNotificationTemplatePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyUpdateAgencyNotificationTemplatePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AgencyApi;

public class AgencyApiExample {

    public static void main(String[] args) {
        AgencyApi apiInstance = new AgencyApi();
        BeagelManagers.Models.AgencyNotificationTemplates body = ; // BeagelManagers.Models.AgencyNotificationTemplates | 
        try {
            apiInstance.apiAgencyUpdateAgencyNotificationTemplatePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling AgencyApi#apiAgencyUpdateAgencyNotificationTemplatePost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.AgencyNotificationTemplates *body = ; //  (optional)

AgencyApi *apiInstance = [[AgencyApi alloc] init];

// Updates an agency notification template (Roles: Admin, SuperAdmin, GroupUser)
[apiInstance apiAgencyUpdateAgencyNotificationTemplatePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.AgencyApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.AgencyNotificationTemplates}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiAgencyUpdateAgencyNotificationTemplatePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new AgencyApi();
            var body = new BeagelManagers.Models.AgencyNotificationTemplates(); // BeagelManagers.Models.AgencyNotificationTemplates |  (optional) 

            try
            {
                // Updates an agency notification template (Roles: Admin, SuperAdmin, GroupUser)
                apiInstance.apiAgencyUpdateAgencyNotificationTemplatePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AgencyApi.apiAgencyUpdateAgencyNotificationTemplatePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiAgencyApi();
$body = ; // BeagelManagers.Models.AgencyNotificationTemplates | 

try {
    $api_instance->apiAgencyUpdateAgencyNotificationTemplatePost($body);
} catch (Exception $e) {
    echo 'Exception when calling AgencyApi->apiAgencyUpdateAgencyNotificationTemplatePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AgencyApi;


my $api_instance = WWW::SwaggerClient::AgencyApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.AgencyNotificationTemplates->new(); # BeagelManagers.Models.AgencyNotificationTemplates | 

eval { 
    $api_instance->apiAgencyUpdateAgencyNotificationTemplatePost(body => $body);
};
if ($@) {
    warn "Exception when calling AgencyApi->apiAgencyUpdateAgencyNotificationTemplatePost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.AgencyApi()
body =  # BeagelManagers.Models.AgencyNotificationTemplates |  (optional)

try: 
    # Updates an agency notification template (Roles: Admin, SuperAdmin, GroupUser)
    api_instance.api_agency_update_agency_notification_template_post(body=body)
except ApiException as e:
    print("Exception when calling AgencyApi->apiAgencyUpdateAgencyNotificationTemplatePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


Bid

apiBidAddToWatchListPost

Adds a bidder to the watch list for a sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Bid/AddToWatchList

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Bid/AddToWatchList?BidderId=&SaleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        Integer bidderId = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiBidAddToWatchListPost(bidderId, saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidAddToWatchListPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        Integer bidderId = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiBidAddToWatchListPost(bidderId, saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidAddToWatchListPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *bidderId = 56; //  (optional)
Integer *saleId = 56; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Adds a bidder to the watch list for a sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiBidAddToWatchListPostWith:bidderId
    saleId:saleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'bidderId': 56, // {{Integer}} 
  'saleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidAddToWatchListPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var bidderId = 56;  // Integer |  (optional) 
            var saleId = 56;  // Integer |  (optional) 

            try
            {
                // Adds a bidder to the watch list for a sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiBidAddToWatchListPost(bidderId, saleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidAddToWatchListPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$bidderId = 56; // Integer | 
$saleId = 56; // Integer | 

try {
    $api_instance->apiBidAddToWatchListPost($bidderId, $saleId);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidAddToWatchListPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $bidderId = 56; # Integer | 
my $saleId = 56; # Integer | 

eval { 
    $api_instance->apiBidAddToWatchListPost(bidderId => $bidderId, saleId => $saleId);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidAddToWatchListPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
bidderId = 56 # Integer |  (optional)
saleId = 56 # Integer |  (optional)

try: 
    # Adds a bidder to the watch list for a sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_bid_add_to_watch_list_post(bidderId=bidderId, saleId=saleId)
except ApiException as e:
    print("Exception when calling BidApi->apiBidAddToWatchListPost: %s\n" % e)

Parameters

Query parameters
Name Description
BidderId
Integer (int32)
SaleId
Integer (int32)

Responses

Status: 200 - Success


apiBidAddUpdateBidByAgentPost

Add Update Bid via Bidder Agent (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, BidderAgent)


/api/Bid/AddUpdateBidByAgent

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Bid/AddUpdateBidByAgent"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        BeagelManagers.Models.BidderAgent body = ; // BeagelManagers.Models.BidderAgent | 
        try {
            apiInstance.apiBidAddUpdateBidByAgentPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidAddUpdateBidByAgentPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        BeagelManagers.Models.BidderAgent body = ; // BeagelManagers.Models.BidderAgent | 
        try {
            apiInstance.apiBidAddUpdateBidByAgentPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidAddUpdateBidByAgentPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.BidderAgent *body = ; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Add Update Bid via Bidder Agent (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, BidderAgent)
[apiInstance apiBidAddUpdateBidByAgentPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.BidderAgent}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidAddUpdateBidByAgentPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var body = new BeagelManagers.Models.BidderAgent(); // BeagelManagers.Models.BidderAgent |  (optional) 

            try
            {
                // Add Update Bid via Bidder Agent (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, BidderAgent)
                apiInstance.apiBidAddUpdateBidByAgentPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidAddUpdateBidByAgentPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$body = ; // BeagelManagers.Models.BidderAgent | 

try {
    $api_instance->apiBidAddUpdateBidByAgentPost($body);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidAddUpdateBidByAgentPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.BidderAgent->new(); # BeagelManagers.Models.BidderAgent | 

eval { 
    $api_instance->apiBidAddUpdateBidByAgentPost(body => $body);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidAddUpdateBidByAgentPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
body =  # BeagelManagers.Models.BidderAgent |  (optional)

try: 
    # Add Update Bid via Bidder Agent (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, BidderAgent)
    api_instance.api_bid_add_update_bid_by_agent_post(body=body)
except ApiException as e:
    print("Exception when calling BidApi->apiBidAddUpdateBidByAgentPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiBidAddUpdateBidLegalPackLogPost

Add Update bid legal pack log (Roles: All)


/api/Bid/AddUpdateBidLegalPackLog

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Bid/AddUpdateBidLegalPackLog"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        BeagelManagers.Models.BidLegelPackLog body = ; // BeagelManagers.Models.BidLegelPackLog | 
        try {
            apiInstance.apiBidAddUpdateBidLegalPackLogPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidAddUpdateBidLegalPackLogPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        BeagelManagers.Models.BidLegelPackLog body = ; // BeagelManagers.Models.BidLegelPackLog | 
        try {
            apiInstance.apiBidAddUpdateBidLegalPackLogPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidAddUpdateBidLegalPackLogPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.BidLegelPackLog *body = ; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Add Update bid legal pack log (Roles: All)
[apiInstance apiBidAddUpdateBidLegalPackLogPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.BidLegelPackLog}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidAddUpdateBidLegalPackLogPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var body = new BeagelManagers.Models.BidLegelPackLog(); // BeagelManagers.Models.BidLegelPackLog |  (optional) 

            try
            {
                // Add Update bid legal pack log (Roles: All)
                apiInstance.apiBidAddUpdateBidLegalPackLogPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidAddUpdateBidLegalPackLogPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$body = ; // BeagelManagers.Models.BidLegelPackLog | 

try {
    $api_instance->apiBidAddUpdateBidLegalPackLogPost($body);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidAddUpdateBidLegalPackLogPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.BidLegelPackLog->new(); # BeagelManagers.Models.BidLegelPackLog | 

eval { 
    $api_instance->apiBidAddUpdateBidLegalPackLogPost(body => $body);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidAddUpdateBidLegalPackLogPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
body =  # BeagelManagers.Models.BidLegelPackLog |  (optional)

try: 
    # Add Update bid legal pack log (Roles: All)
    api_instance.api_bid_add_update_bid_legal_pack_log_post(body=body)
except ApiException as e:
    print("Exception when calling BidApi->apiBidAddUpdateBidLegalPackLogPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiBidAddUpdateBidLegalPacksPost

Add updates bid legal packs (Roles: All)


/api/Bid/AddUpdateBidLegalPacks

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: multipart/form-data"\
"//api/Bid/AddUpdateBidLegalPacks"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer bidId = 56; // Integer | 
        Integer id = 56; // Integer | 
        String description = description_example; // String | 
        String name = name_example; // String | 
        String path = path_example; // String | 
        try {
            apiInstance.apiBidAddUpdateBidLegalPacksPost(file, bidId, id, description, name, path);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidAddUpdateBidLegalPacksPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer bidId = 56; // Integer | 
        Integer id = 56; // Integer | 
        String description = description_example; // String | 
        String name = name_example; // String | 
        String path = path_example; // String | 
        try {
            apiInstance.apiBidAddUpdateBidLegalPacksPost(file, bidId, id, description, name, path);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidAddUpdateBidLegalPacksPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
array[byte[]] *file = ; //  (optional)
Integer *bidId = 56; //  (optional)
Integer *id = 56; //  (optional)
String *description = description_example; //  (optional)
String *name = name_example; //  (optional)
String *path = path_example; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Add updates bid legal packs (Roles: All)
[apiInstance apiBidAddUpdateBidLegalPacksPostWith:file
    bidId:bidId
    id:id
    description:description
    name:name
    path:path
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'file':  // {{array[byte[]]}} 
  'bidId': 56 // {{Integer}} 
  'id': 56 // {{Integer}} 
  'description': description_example // {{String}} 
  'name': name_example // {{String}} 
  'path': path_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidAddUpdateBidLegalPacksPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var file = new array[byte[]](); // array[byte[]] |  (optional) 
            var bidId = 56;  // Integer |  (optional) 
            var id = 56;  // Integer |  (optional) 
            var description = description_example;  // String |  (optional) 
            var name = name_example;  // String |  (optional) 
            var path = path_example;  // String |  (optional) 

            try
            {
                // Add updates bid legal packs (Roles: All)
                apiInstance.apiBidAddUpdateBidLegalPacksPost(file, bidId, id, description, name, path);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidAddUpdateBidLegalPacksPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$file = ; // array[byte[]] | 
$bidId = 56; // Integer | 
$id = 56; // Integer | 
$description = description_example; // String | 
$name = name_example; // String | 
$path = path_example; // String | 

try {
    $api_instance->apiBidAddUpdateBidLegalPacksPost($file, $bidId, $id, $description, $name, $path);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidAddUpdateBidLegalPacksPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $file = []; # array[byte[]] | 
my $bidId = 56; # Integer | 
my $id = 56; # Integer | 
my $description = description_example; # String | 
my $name = name_example; # String | 
my $path = path_example; # String | 

eval { 
    $api_instance->apiBidAddUpdateBidLegalPacksPost(file => $file, bidId => $bidId, id => $id, description => $description, name => $name, path => $path);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidAddUpdateBidLegalPacksPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
file =  # array[byte[]] |  (optional)
bidId = 56 # Integer |  (optional)
id = 56 # Integer |  (optional)
description = description_example # String |  (optional)
name = name_example # String |  (optional)
path = path_example # String |  (optional)

try: 
    # Add updates bid legal packs (Roles: All)
    api_instance.api_bid_add_update_bid_legal_packs_post(file=file, bidId=bidId, id=id, description=description, name=name, path=path)
except ApiException as e:
    print("Exception when calling BidApi->apiBidAddUpdateBidLegalPacksPost: %s\n" % e)

Parameters

Form parameters
Name Description
File
array[byte[]] (binary)
BidId
Integer (int32)
Id
Integer (int32)
Description
String
Name
String
Path
String

Responses

Status: 200 - Success


apiBidAddUpdateBidPost

Adds a bid for a user (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)


/api/Bid/AddUpdateBid

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Bid/AddUpdateBid"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        BeagelManagers.Models.Bid body = ; // BeagelManagers.Models.Bid | 
        try {
            apiInstance.apiBidAddUpdateBidPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidAddUpdateBidPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        BeagelManagers.Models.Bid body = ; // BeagelManagers.Models.Bid | 
        try {
            apiInstance.apiBidAddUpdateBidPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidAddUpdateBidPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Bid *body = ; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Adds a bid for a user (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
[apiInstance apiBidAddUpdateBidPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Bid}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidAddUpdateBidPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var body = new BeagelManagers.Models.Bid(); // BeagelManagers.Models.Bid |  (optional) 

            try
            {
                // Adds a bid for a user (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
                apiInstance.apiBidAddUpdateBidPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidAddUpdateBidPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$body = ; // BeagelManagers.Models.Bid | 

try {
    $api_instance->apiBidAddUpdateBidPost($body);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidAddUpdateBidPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Bid->new(); # BeagelManagers.Models.Bid | 

eval { 
    $api_instance->apiBidAddUpdateBidPost(body => $body);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidAddUpdateBidPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
body =  # BeagelManagers.Models.Bid |  (optional)

try: 
    # Adds a bid for a user (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
    api_instance.api_bid_add_update_bid_post(body=body)
except ApiException as e:
    print("Exception when calling BidApi->apiBidAddUpdateBidPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiBidAddUpdateTermsAndConditionsPost

Add Updates a list of Terms and Condtions (Roles: All)


/api/Bid/AddUpdateTermsAndConditions

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Bid/AddUpdateTermsAndConditions"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        array[BeagelManagers.Models.TermsAndConditions] body = ; // array[BeagelManagers.Models.TermsAndConditions] | 
        try {
            apiInstance.apiBidAddUpdateTermsAndConditionsPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidAddUpdateTermsAndConditionsPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        array[BeagelManagers.Models.TermsAndConditions] body = ; // array[BeagelManagers.Models.TermsAndConditions] | 
        try {
            apiInstance.apiBidAddUpdateTermsAndConditionsPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidAddUpdateTermsAndConditionsPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
array[BeagelManagers.Models.TermsAndConditions] *body = ; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Add Updates a list of Terms and Condtions (Roles: All)
[apiInstance apiBidAddUpdateTermsAndConditionsPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'body':  // {{array[BeagelManagers.Models.TermsAndConditions]}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidAddUpdateTermsAndConditionsPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var body = new array[BeagelManagers.Models.TermsAndConditions](); // array[BeagelManagers.Models.TermsAndConditions] |  (optional) 

            try
            {
                // Add Updates a list of Terms and Condtions (Roles: All)
                apiInstance.apiBidAddUpdateTermsAndConditionsPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidAddUpdateTermsAndConditionsPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$body = ; // array[BeagelManagers.Models.TermsAndConditions] | 

try {
    $api_instance->apiBidAddUpdateTermsAndConditionsPost($body);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidAddUpdateTermsAndConditionsPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $body = [WWW::SwaggerClient::Object::array[BeagelManagers.Models.TermsAndConditions]->new()]; # array[BeagelManagers.Models.TermsAndConditions] | 

eval { 
    $api_instance->apiBidAddUpdateTermsAndConditionsPost(body => $body);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidAddUpdateTermsAndConditionsPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
body =  # array[BeagelManagers.Models.TermsAndConditions] |  (optional)

try: 
    # Add Updates a list of Terms and Condtions (Roles: All)
    api_instance.api_bid_add_update_terms_and_conditions_post(body=body)
except ApiException as e:
    print("Exception when calling BidApi->apiBidAddUpdateTermsAndConditionsPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiBidChangeStatusOfHighestBidPost

Changes the status of the highest bid by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Bid/ChangeStatusOfHighestBid

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Bid/ChangeStatusOfHighestBid"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        BeagelManagers.Models.Bid body = ; // BeagelManagers.Models.Bid | 
        try {
            apiInstance.apiBidChangeStatusOfHighestBidPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidChangeStatusOfHighestBidPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        BeagelManagers.Models.Bid body = ; // BeagelManagers.Models.Bid | 
        try {
            apiInstance.apiBidChangeStatusOfHighestBidPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidChangeStatusOfHighestBidPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Bid *body = ; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Changes the status of the highest bid by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiBidChangeStatusOfHighestBidPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Bid}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidChangeStatusOfHighestBidPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var body = new BeagelManagers.Models.Bid(); // BeagelManagers.Models.Bid |  (optional) 

            try
            {
                // Changes the status of the highest bid by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiBidChangeStatusOfHighestBidPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidChangeStatusOfHighestBidPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$body = ; // BeagelManagers.Models.Bid | 

try {
    $api_instance->apiBidChangeStatusOfHighestBidPost($body);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidChangeStatusOfHighestBidPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Bid->new(); # BeagelManagers.Models.Bid | 

eval { 
    $api_instance->apiBidChangeStatusOfHighestBidPost(body => $body);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidChangeStatusOfHighestBidPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
body =  # BeagelManagers.Models.Bid |  (optional)

try: 
    # Changes the status of the highest bid by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_bid_change_status_of_highest_bid_post(body=body)
except ApiException as e:
    print("Exception when calling BidApi->apiBidChangeStatusOfHighestBidPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiBidCheckBidderAcceptedOnThisSaleGet

Check if bidder accepted on this sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)


/api/Bid/CheckBidderAcceptedOnThisSale

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Bid/CheckBidderAcceptedOnThisSale?Username=&SaleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        String username = username_example; // String | 
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiBidCheckBidderAcceptedOnThisSaleGet(username, saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidCheckBidderAcceptedOnThisSaleGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        String username = username_example; // String | 
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiBidCheckBidderAcceptedOnThisSaleGet(username, saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidCheckBidderAcceptedOnThisSaleGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *username = username_example; //  (optional)
Integer *saleId = 56; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Check if bidder accepted on this sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
[apiInstance apiBidCheckBidderAcceptedOnThisSaleGetWith:username
    saleId:saleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'username': username_example, // {{String}} 
  'saleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidCheckBidderAcceptedOnThisSaleGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var username = username_example;  // String |  (optional) 
            var saleId = 56;  // Integer |  (optional) 

            try
            {
                // Check if bidder accepted on this sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
                apiInstance.apiBidCheckBidderAcceptedOnThisSaleGet(username, saleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidCheckBidderAcceptedOnThisSaleGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$username = username_example; // String | 
$saleId = 56; // Integer | 

try {
    $api_instance->apiBidCheckBidderAcceptedOnThisSaleGet($username, $saleId);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidCheckBidderAcceptedOnThisSaleGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $username = username_example; # String | 
my $saleId = 56; # Integer | 

eval { 
    $api_instance->apiBidCheckBidderAcceptedOnThisSaleGet(username => $username, saleId => $saleId);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidCheckBidderAcceptedOnThisSaleGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
username = username_example # String |  (optional)
saleId = 56 # Integer |  (optional)

try: 
    # Check if bidder accepted on this sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
    api_instance.api_bid_check_bidder_accepted_on_this_sale_get(username=username, saleId=saleId)
except ApiException as e:
    print("Exception when calling BidApi->apiBidCheckBidderAcceptedOnThisSaleGet: %s\n" % e)

Parameters

Query parameters
Name Description
Username
String
SaleId
Integer (int32)

Responses

Status: 200 - Success


apiBidCheckIfBidderAgentAcceptedOnThisSaleGet

Check if bidder or buyer agent accepted this sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, BidderAgent)


/api/Bid/CheckIfBidderAgentAcceptedOnThisSale

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Bid/CheckIfBidderAgentAcceptedOnThisSale?AgentId=&BidderId=&SaleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        Integer agentId = 56; // Integer | 
        Integer bidderId = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiBidCheckIfBidderAgentAcceptedOnThisSaleGet(agentId, bidderId, saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidCheckIfBidderAgentAcceptedOnThisSaleGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        Integer agentId = 56; // Integer | 
        Integer bidderId = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiBidCheckIfBidderAgentAcceptedOnThisSaleGet(agentId, bidderId, saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidCheckIfBidderAgentAcceptedOnThisSaleGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agentId = 56; //  (optional)
Integer *bidderId = 56; //  (optional)
Integer *saleId = 56; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Check if bidder or buyer agent accepted this sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, BidderAgent)
[apiInstance apiBidCheckIfBidderAgentAcceptedOnThisSaleGetWith:agentId
    bidderId:bidderId
    saleId:saleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'agentId': 56, // {{Integer}} 
  'bidderId': 56, // {{Integer}} 
  'saleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidCheckIfBidderAgentAcceptedOnThisSaleGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var agentId = 56;  // Integer |  (optional) 
            var bidderId = 56;  // Integer |  (optional) 
            var saleId = 56;  // Integer |  (optional) 

            try
            {
                // Check if bidder or buyer agent accepted this sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, BidderAgent)
                apiInstance.apiBidCheckIfBidderAgentAcceptedOnThisSaleGet(agentId, bidderId, saleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidCheckIfBidderAgentAcceptedOnThisSaleGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$agentId = 56; // Integer | 
$bidderId = 56; // Integer | 
$saleId = 56; // Integer | 

try {
    $api_instance->apiBidCheckIfBidderAgentAcceptedOnThisSaleGet($agentId, $bidderId, $saleId);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidCheckIfBidderAgentAcceptedOnThisSaleGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $agentId = 56; # Integer | 
my $bidderId = 56; # Integer | 
my $saleId = 56; # Integer | 

eval { 
    $api_instance->apiBidCheckIfBidderAgentAcceptedOnThisSaleGet(agentId => $agentId, bidderId => $bidderId, saleId => $saleId);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidCheckIfBidderAgentAcceptedOnThisSaleGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
agentId = 56 # Integer |  (optional)
bidderId = 56 # Integer |  (optional)
saleId = 56 # Integer |  (optional)

try: 
    # Check if bidder or buyer agent accepted this sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, BidderAgent)
    api_instance.api_bid_check_if_bidder_agent_accepted_on_this_sale_get(agentId=agentId, bidderId=bidderId, saleId=saleId)
except ApiException as e:
    print("Exception when calling BidApi->apiBidCheckIfBidderAgentAcceptedOnThisSaleGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgentId
Integer (int32)
BidderId
Integer (int32)
SaleId
Integer (int32)

Responses

Status: 200 - Success


apiBidDeleteBidLegalPackDelete

Deletes bid legal pack by Id (Roles: All)


/api/Bid/DeleteBidLegalPack

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Bid/DeleteBidLegalPack?Id=&BidId=&FileName="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        Integer id = 56; // Integer | 
        Integer bidId = 56; // Integer | 
        String fileName = fileName_example; // String | 
        try {
            apiInstance.apiBidDeleteBidLegalPackDelete(id, bidId, fileName);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidDeleteBidLegalPackDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        Integer id = 56; // Integer | 
        Integer bidId = 56; // Integer | 
        String fileName = fileName_example; // String | 
        try {
            apiInstance.apiBidDeleteBidLegalPackDelete(id, bidId, fileName);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidDeleteBidLegalPackDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  (optional)
Integer *bidId = 56; //  (optional)
String *fileName = fileName_example; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Deletes bid legal pack by Id (Roles: All)
[apiInstance apiBidDeleteBidLegalPackDeleteWith:id
    bidId:bidId
    fileName:fileName
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'id': 56, // {{Integer}} 
  'bidId': 56, // {{Integer}} 
  'fileName': fileName_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidDeleteBidLegalPackDelete(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var id = 56;  // Integer |  (optional) 
            var bidId = 56;  // Integer |  (optional) 
            var fileName = fileName_example;  // String |  (optional) 

            try
            {
                // Deletes bid legal pack by Id (Roles: All)
                apiInstance.apiBidDeleteBidLegalPackDelete(id, bidId, fileName);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidDeleteBidLegalPackDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$id = 56; // Integer | 
$bidId = 56; // Integer | 
$fileName = fileName_example; // String | 

try {
    $api_instance->apiBidDeleteBidLegalPackDelete($id, $bidId, $fileName);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidDeleteBidLegalPackDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $id = 56; # Integer | 
my $bidId = 56; # Integer | 
my $fileName = fileName_example; # String | 

eval { 
    $api_instance->apiBidDeleteBidLegalPackDelete(id => $id, bidId => $bidId, fileName => $fileName);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidDeleteBidLegalPackDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
id = 56 # Integer |  (optional)
bidId = 56 # Integer |  (optional)
fileName = fileName_example # String |  (optional)

try: 
    # Deletes bid legal pack by Id (Roles: All)
    api_instance.api_bid_delete_bid_legal_pack_delete(id=id, bidId=bidId, fileName=fileName)
except ApiException as e:
    print("Exception when calling BidApi->apiBidDeleteBidLegalPackDelete: %s\n" % e)

Parameters

Query parameters
Name Description
Id
Integer (int32)
BidId
Integer (int32)
FileName
String

Responses

Status: 200 - Success


apiBidGetBidGet

Retuns a single bid object from the BidId (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)


/api/Bid/GetBid

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Bid/GetBid?BidId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        Integer bidId = 56; // Integer | 
        try {
            apiInstance.apiBidGetBidGet(bidId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetBidGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        Integer bidId = 56; // Integer | 
        try {
            apiInstance.apiBidGetBidGet(bidId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetBidGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *bidId = 56; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Retuns a single bid object from the BidId (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
[apiInstance apiBidGetBidGetWith:bidId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'bidId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidGetBidGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var bidId = 56;  // Integer |  (optional) 

            try
            {
                // Retuns a single bid object from the BidId (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
                apiInstance.apiBidGetBidGet(bidId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidGetBidGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$bidId = 56; // Integer | 

try {
    $api_instance->apiBidGetBidGet($bidId);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidGetBidGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $bidId = 56; # Integer | 

eval { 
    $api_instance->apiBidGetBidGet(bidId => $bidId);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidGetBidGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
bidId = 56 # Integer |  (optional)

try: 
    # Retuns a single bid object from the BidId (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
    api_instance.api_bid_get_bid_get(bidId=bidId)
except ApiException as e:
    print("Exception when calling BidApi->apiBidGetBidGet: %s\n" % e)

Parameters

Query parameters
Name Description
BidId
Integer (int32)

Responses

Status: 200 - Success


apiBidGetBidLegalPackByIdGet

Get bid legal pack by id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)


/api/Bid/GetBidLegalPackById

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Bid/GetBidLegalPackById?Id="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiBidGetBidLegalPackByIdGet(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetBidLegalPackByIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiBidGetBidLegalPackByIdGet(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetBidLegalPackByIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Get bid legal pack by id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
[apiInstance apiBidGetBidLegalPackByIdGetWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'id': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidGetBidLegalPackByIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var id = 56;  // Integer |  (optional) 

            try
            {
                // Get bid legal pack by id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
                apiInstance.apiBidGetBidLegalPackByIdGet(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidGetBidLegalPackByIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$id = 56; // Integer | 

try {
    $api_instance->apiBidGetBidLegalPackByIdGet($id);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidGetBidLegalPackByIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $id = 56; # Integer | 

eval { 
    $api_instance->apiBidGetBidLegalPackByIdGet(id => $id);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidGetBidLegalPackByIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
id = 56 # Integer |  (optional)

try: 
    # Get bid legal pack by id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
    api_instance.api_bid_get_bid_legal_pack_by_id_get(id=id)
except ApiException as e:
    print("Exception when calling BidApi->apiBidGetBidLegalPackByIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
Id
Integer (int32)

Responses

Status: 200 - Success


apiBidGetBidLegalPackGet

Get a list of bid legal pack by bid id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)


/api/Bid/GetBidLegalPack

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Bid/GetBidLegalPack?BidId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        Integer bidId = 56; // Integer | 
        try {
            apiInstance.apiBidGetBidLegalPackGet(bidId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetBidLegalPackGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        Integer bidId = 56; // Integer | 
        try {
            apiInstance.apiBidGetBidLegalPackGet(bidId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetBidLegalPackGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *bidId = 56; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Get a list of bid legal pack by bid id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
[apiInstance apiBidGetBidLegalPackGetWith:bidId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'bidId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidGetBidLegalPackGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var bidId = 56;  // Integer |  (optional) 

            try
            {
                // Get a list of bid legal pack by bid id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
                apiInstance.apiBidGetBidLegalPackGet(bidId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidGetBidLegalPackGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$bidId = 56; // Integer | 

try {
    $api_instance->apiBidGetBidLegalPackGet($bidId);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidGetBidLegalPackGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $bidId = 56; # Integer | 

eval { 
    $api_instance->apiBidGetBidLegalPackGet(bidId => $bidId);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidGetBidLegalPackGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
bidId = 56 # Integer |  (optional)

try: 
    # Get a list of bid legal pack by bid id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
    api_instance.api_bid_get_bid_legal_pack_get(bidId=bidId)
except ApiException as e:
    print("Exception when calling BidApi->apiBidGetBidLegalPackGet: %s\n" % e)

Parameters

Query parameters
Name Description
BidId
Integer (int32)

Responses

Status: 200 - Success


apiBidGetBidsForSaleAlsoIncludesBuyerAgentsGet

Get bids for sales which also includes buyer agents if they have one. (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)


/api/Bid/GetBidsForSaleAlsoIncludesBuyerAgents

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Bid/GetBidsForSaleAlsoIncludesBuyerAgents?SaleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiBidGetBidsForSaleAlsoIncludesBuyerAgentsGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetBidsForSaleAlsoIncludesBuyerAgentsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiBidGetBidsForSaleAlsoIncludesBuyerAgentsGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetBidsForSaleAlsoIncludesBuyerAgentsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *saleId = 56; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Get bids for sales which also includes buyer agents if they have one. (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
[apiInstance apiBidGetBidsForSaleAlsoIncludesBuyerAgentsGetWith:saleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'saleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidGetBidsForSaleAlsoIncludesBuyerAgentsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var saleId = 56;  // Integer |  (optional) 

            try
            {
                // Get bids for sales which also includes buyer agents if they have one. (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
                apiInstance.apiBidGetBidsForSaleAlsoIncludesBuyerAgentsGet(saleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidGetBidsForSaleAlsoIncludesBuyerAgentsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$saleId = 56; // Integer | 

try {
    $api_instance->apiBidGetBidsForSaleAlsoIncludesBuyerAgentsGet($saleId);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidGetBidsForSaleAlsoIncludesBuyerAgentsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $saleId = 56; # Integer | 

eval { 
    $api_instance->apiBidGetBidsForSaleAlsoIncludesBuyerAgentsGet(saleId => $saleId);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidGetBidsForSaleAlsoIncludesBuyerAgentsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
saleId = 56 # Integer |  (optional)

try: 
    # Get bids for sales which also includes buyer agents if they have one. (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
    api_instance.api_bid_get_bids_for_sale_also_includes_buyer_agents_get(saleId=saleId)
except ApiException as e:
    print("Exception when calling BidApi->apiBidGetBidsForSaleAlsoIncludesBuyerAgentsGet: %s\n" % e)

Parameters

Query parameters
Name Description
SaleId
Integer (int32)

Responses

Status: 200 - Success


apiBidGetBidsForSaleGet

Gets the list of bids for a given Sale Id ordered descending (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)


/api/Bid/GetBidsForSale

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Bid/GetBidsForSale?SaleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiBidGetBidsForSaleGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetBidsForSaleGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiBidGetBidsForSaleGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetBidsForSaleGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *saleId = 56; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Gets the list of bids for a given Sale Id ordered descending (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
[apiInstance apiBidGetBidsForSaleGetWith:saleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'saleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidGetBidsForSaleGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var saleId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the list of bids for a given Sale Id ordered descending (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
                apiInstance.apiBidGetBidsForSaleGet(saleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidGetBidsForSaleGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$saleId = 56; // Integer | 

try {
    $api_instance->apiBidGetBidsForSaleGet($saleId);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidGetBidsForSaleGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $saleId = 56; # Integer | 

eval { 
    $api_instance->apiBidGetBidsForSaleGet(saleId => $saleId);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidGetBidsForSaleGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
saleId = 56 # Integer |  (optional)

try: 
    # Gets the list of bids for a given Sale Id ordered descending (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
    api_instance.api_bid_get_bids_for_sale_get(saleId=saleId)
except ApiException as e:
    print("Exception when calling BidApi->apiBidGetBidsForSaleGet: %s\n" % e)

Parameters

Query parameters
Name Description
SaleId
Integer (int32)

Responses

Status: 200 - Success


apiBidGetBidsForSaleIdGet

Gets the bids for a sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)


/api/Bid/GetBidsForSaleId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Bid/GetBidsForSaleId?SaleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiBidGetBidsForSaleIdGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetBidsForSaleIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiBidGetBidsForSaleIdGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetBidsForSaleIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *saleId = 56; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Gets the bids for a sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
[apiInstance apiBidGetBidsForSaleIdGetWith:saleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'saleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidGetBidsForSaleIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var saleId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the bids for a sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
                apiInstance.apiBidGetBidsForSaleIdGet(saleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidGetBidsForSaleIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$saleId = 56; // Integer | 

try {
    $api_instance->apiBidGetBidsForSaleIdGet($saleId);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidGetBidsForSaleIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $saleId = 56; # Integer | 

eval { 
    $api_instance->apiBidGetBidsForSaleIdGet(saleId => $saleId);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidGetBidsForSaleIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
saleId = 56 # Integer |  (optional)

try: 
    # Gets the bids for a sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent, Bidder)
    api_instance.api_bid_get_bids_for_sale_id_get(saleId=saleId)
except ApiException as e:
    print("Exception when calling BidApi->apiBidGetBidsForSaleIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
SaleId
Integer (int32)

Responses

Status: 200 - Success


apiBidGetTermsAndConditionsGet

Get terms and conditions by bid id (Roles: All)


/api/Bid/GetTermsAndConditions

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Bid/GetTermsAndConditions?BidId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        Integer bidId = 56; // Integer | 
        try {
            apiInstance.apiBidGetTermsAndConditionsGet(bidId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetTermsAndConditionsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        Integer bidId = 56; // Integer | 
        try {
            apiInstance.apiBidGetTermsAndConditionsGet(bidId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetTermsAndConditionsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *bidId = 56; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Get terms and conditions by bid id (Roles: All)
[apiInstance apiBidGetTermsAndConditionsGetWith:bidId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'bidId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidGetTermsAndConditionsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var bidId = 56;  // Integer |  (optional) 

            try
            {
                // Get terms and conditions by bid id (Roles: All)
                apiInstance.apiBidGetTermsAndConditionsGet(bidId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidGetTermsAndConditionsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$bidId = 56; // Integer | 

try {
    $api_instance->apiBidGetTermsAndConditionsGet($bidId);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidGetTermsAndConditionsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $bidId = 56; # Integer | 

eval { 
    $api_instance->apiBidGetTermsAndConditionsGet(bidId => $bidId);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidGetTermsAndConditionsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
bidId = 56 # Integer |  (optional)

try: 
    # Get terms and conditions by bid id (Roles: All)
    api_instance.api_bid_get_terms_and_conditions_get(bidId=bidId)
except ApiException as e:
    print("Exception when calling BidApi->apiBidGetTermsAndConditionsGet: %s\n" % e)

Parameters

Query parameters
Name Description
BidId
Integer (int32)

Responses

Status: 200 - Success


apiBidGetWatchListGet

Gets the watchlist from a sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Bid/GetWatchList

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Bid/GetWatchList?SaleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BidApi;

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

public class BidApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BidApi apiInstance = new BidApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiBidGetWatchListGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetWatchListGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BidApi;

public class BidApiExample {

    public static void main(String[] args) {
        BidApi apiInstance = new BidApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiBidGetWatchListGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BidApi#apiBidGetWatchListGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *saleId = 56; //  (optional)

BidApi *apiInstance = [[BidApi alloc] init];

// Gets the watchlist from a sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiBidGetWatchListGetWith:saleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BidApi()
var opts = { 
  'saleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBidGetWatchListGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BidApi();
            var saleId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the watchlist from a sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiBidGetWatchListGet(saleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BidApi.apiBidGetWatchListGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBidApi();
$saleId = 56; // Integer | 

try {
    $api_instance->apiBidGetWatchListGet($saleId);
} catch (Exception $e) {
    echo 'Exception when calling BidApi->apiBidGetWatchListGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BidApi;


my $api_instance = WWW::SwaggerClient::BidApi->new();
my $saleId = 56; # Integer | 

eval { 
    $api_instance->apiBidGetWatchListGet(saleId => $saleId);
};
if ($@) {
    warn "Exception when calling BidApi->apiBidGetWatchListGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BidApi()
saleId = 56 # Integer |  (optional)

try: 
    # Gets the watchlist from a sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_bid_get_watch_list_get(saleId=saleId)
except ApiException as e:
    print("Exception when calling BidApi->apiBidGetWatchListGet: %s\n" % e)

Parameters

Query parameters
Name Description
SaleId
Integer (int32)

Responses

Status: 200 - Success


Branch

apiBranchAddUpdateAccountPost

Add Update branch account details (Roles: Admin, SuperAdmin, GroupUser, AgencyUser, BranchUser)


/api/Branch/AddUpdateAccount

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Branch/AddUpdateAccount"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BranchApi;

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

public class BranchApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BranchApi apiInstance = new BranchApi();
        BeagelManagers.Models.AccountDetails body = ; // BeagelManagers.Models.AccountDetails | 
        try {
            apiInstance.apiBranchAddUpdateAccountPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchAddUpdateAccountPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BranchApi;

public class BranchApiExample {

    public static void main(String[] args) {
        BranchApi apiInstance = new BranchApi();
        BeagelManagers.Models.AccountDetails body = ; // BeagelManagers.Models.AccountDetails | 
        try {
            apiInstance.apiBranchAddUpdateAccountPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchAddUpdateAccountPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.AccountDetails *body = ; //  (optional)

BranchApi *apiInstance = [[BranchApi alloc] init];

// Add Update branch account details (Roles: Admin, SuperAdmin, GroupUser, AgencyUser, BranchUser)
[apiInstance apiBranchAddUpdateAccountPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BranchApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.AccountDetails}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBranchAddUpdateAccountPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BranchApi();
            var body = new BeagelManagers.Models.AccountDetails(); // BeagelManagers.Models.AccountDetails |  (optional) 

            try
            {
                // Add Update branch account details (Roles: Admin, SuperAdmin, GroupUser, AgencyUser, BranchUser)
                apiInstance.apiBranchAddUpdateAccountPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BranchApi.apiBranchAddUpdateAccountPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBranchApi();
$body = ; // BeagelManagers.Models.AccountDetails | 

try {
    $api_instance->apiBranchAddUpdateAccountPost($body);
} catch (Exception $e) {
    echo 'Exception when calling BranchApi->apiBranchAddUpdateAccountPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BranchApi;


my $api_instance = WWW::SwaggerClient::BranchApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.AccountDetails->new(); # BeagelManagers.Models.AccountDetails | 

eval { 
    $api_instance->apiBranchAddUpdateAccountPost(body => $body);
};
if ($@) {
    warn "Exception when calling BranchApi->apiBranchAddUpdateAccountPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BranchApi()
body =  # BeagelManagers.Models.AccountDetails |  (optional)

try: 
    # Add Update branch account details (Roles: Admin, SuperAdmin, GroupUser, AgencyUser, BranchUser)
    api_instance.api_branch_add_update_account_post(body=body)
except ApiException as e:
    print("Exception when calling BranchApi->apiBranchAddUpdateAccountPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiBranchAddUpdateBranchPost

Add or Update a branch (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)


/api/Branch/AddUpdateBranch

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Branch/AddUpdateBranch"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BranchApi;

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

public class BranchApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BranchApi apiInstance = new BranchApi();
        BeagelManagers.Models.Branch body = ; // BeagelManagers.Models.Branch | 
        try {
            apiInstance.apiBranchAddUpdateBranchPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchAddUpdateBranchPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BranchApi;

public class BranchApiExample {

    public static void main(String[] args) {
        BranchApi apiInstance = new BranchApi();
        BeagelManagers.Models.Branch body = ; // BeagelManagers.Models.Branch | 
        try {
            apiInstance.apiBranchAddUpdateBranchPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchAddUpdateBranchPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Branch *body = ; //  (optional)

BranchApi *apiInstance = [[BranchApi alloc] init];

// Add or Update a branch (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
[apiInstance apiBranchAddUpdateBranchPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BranchApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Branch}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBranchAddUpdateBranchPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BranchApi();
            var body = new BeagelManagers.Models.Branch(); // BeagelManagers.Models.Branch |  (optional) 

            try
            {
                // Add or Update a branch (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
                apiInstance.apiBranchAddUpdateBranchPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BranchApi.apiBranchAddUpdateBranchPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBranchApi();
$body = ; // BeagelManagers.Models.Branch | 

try {
    $api_instance->apiBranchAddUpdateBranchPost($body);
} catch (Exception $e) {
    echo 'Exception when calling BranchApi->apiBranchAddUpdateBranchPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BranchApi;


my $api_instance = WWW::SwaggerClient::BranchApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Branch->new(); # BeagelManagers.Models.Branch | 

eval { 
    $api_instance->apiBranchAddUpdateBranchPost(body => $body);
};
if ($@) {
    warn "Exception when calling BranchApi->apiBranchAddUpdateBranchPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BranchApi()
body =  # BeagelManagers.Models.Branch |  (optional)

try: 
    # Add or Update a branch (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
    api_instance.api_branch_add_update_branch_post(body=body)
except ApiException as e:
    print("Exception when calling BranchApi->apiBranchAddUpdateBranchPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiBranchGetAllBranchNotifcationsGet

Get All Branch templates


/api/Branch/GetAllBranchNotifcations

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Branch/GetAllBranchNotifcations?BranchId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BranchApi;

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

public class BranchApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BranchApi apiInstance = new BranchApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiBranchGetAllBranchNotifcationsGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchGetAllBranchNotifcationsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BranchApi;

public class BranchApiExample {

    public static void main(String[] args) {
        BranchApi apiInstance = new BranchApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiBranchGetAllBranchNotifcationsGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchGetAllBranchNotifcationsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *branchId = 56; //  (optional)

BranchApi *apiInstance = [[BranchApi alloc] init];

// Get All Branch templates
[apiInstance apiBranchGetAllBranchNotifcationsGetWith:branchId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BranchApi()
var opts = { 
  'branchId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBranchGetAllBranchNotifcationsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BranchApi();
            var branchId = 56;  // Integer |  (optional) 

            try
            {
                // Get All Branch templates
                apiInstance.apiBranchGetAllBranchNotifcationsGet(branchId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BranchApi.apiBranchGetAllBranchNotifcationsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBranchApi();
$branchId = 56; // Integer | 

try {
    $api_instance->apiBranchGetAllBranchNotifcationsGet($branchId);
} catch (Exception $e) {
    echo 'Exception when calling BranchApi->apiBranchGetAllBranchNotifcationsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BranchApi;


my $api_instance = WWW::SwaggerClient::BranchApi->new();
my $branchId = 56; # Integer | 

eval { 
    $api_instance->apiBranchGetAllBranchNotifcationsGet(branchId => $branchId);
};
if ($@) {
    warn "Exception when calling BranchApi->apiBranchGetAllBranchNotifcationsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BranchApi()
branchId = 56 # Integer |  (optional)

try: 
    # Get All Branch templates
    api_instance.api_branch_get_all_branch_notifcations_get(branchId=branchId)
except ApiException as e:
    print("Exception when calling BranchApi->apiBranchGetAllBranchNotifcationsGet: %s\n" % e)

Parameters

Query parameters
Name Description
BranchId
Integer (int32)

Responses

Status: 200 - Success


apiBranchGetAllBranchesForAgencyIdGet

Get All Branches for an agency (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)


/api/Branch/GetAllBranchesForAgencyId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Branch/GetAllBranchesForAgencyId?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BranchApi;

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

public class BranchApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BranchApi apiInstance = new BranchApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiBranchGetAllBranchesForAgencyIdGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchGetAllBranchesForAgencyIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BranchApi;

public class BranchApiExample {

    public static void main(String[] args) {
        BranchApi apiInstance = new BranchApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiBranchGetAllBranchesForAgencyIdGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchGetAllBranchesForAgencyIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional) (default to 0)

BranchApi *apiInstance = [[BranchApi alloc] init];

// Get All Branches for an agency (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
[apiInstance apiBranchGetAllBranchesForAgencyIdGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BranchApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBranchGetAllBranchesForAgencyIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BranchApi();
            var agencyId = 56;  // Integer |  (optional)  (default to 0)

            try
            {
                // Get All Branches for an agency (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
                apiInstance.apiBranchGetAllBranchesForAgencyIdGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BranchApi.apiBranchGetAllBranchesForAgencyIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBranchApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiBranchGetAllBranchesForAgencyIdGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling BranchApi->apiBranchGetAllBranchesForAgencyIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BranchApi;


my $api_instance = WWW::SwaggerClient::BranchApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiBranchGetAllBranchesForAgencyIdGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling BranchApi->apiBranchGetAllBranchesForAgencyIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BranchApi()
agencyId = 56 # Integer |  (optional) (default to 0)

try: 
    # Get All Branches for an agency (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
    api_instance.api_branch_get_all_branches_for_agency_id_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling BranchApi->apiBranchGetAllBranchesForAgencyIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiBranchGetAllBranchesGet

Returns the full list of all branches (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)


/api/Branch/GetAllBranches

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Branch/GetAllBranches"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BranchApi;

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

public class BranchApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BranchApi apiInstance = new BranchApi();
        try {
            apiInstance.apiBranchGetAllBranchesGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchGetAllBranchesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BranchApi;

public class BranchApiExample {

    public static void main(String[] args) {
        BranchApi apiInstance = new BranchApi();
        try {
            apiInstance.apiBranchGetAllBranchesGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchGetAllBranchesGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

BranchApi *apiInstance = [[BranchApi alloc] init];

// Returns the full list of all branches (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
[apiInstance apiBranchGetAllBranchesGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BranchApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBranchGetAllBranchesGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BranchApi();

            try
            {
                // Returns the full list of all branches (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
                apiInstance.apiBranchGetAllBranchesGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BranchApi.apiBranchGetAllBranchesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBranchApi();

try {
    $api_instance->apiBranchGetAllBranchesGet();
} catch (Exception $e) {
    echo 'Exception when calling BranchApi->apiBranchGetAllBranchesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BranchApi;


my $api_instance = WWW::SwaggerClient::BranchApi->new();

eval { 
    $api_instance->apiBranchGetAllBranchesGet();
};
if ($@) {
    warn "Exception when calling BranchApi->apiBranchGetAllBranchesGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BranchApi()

try: 
    # Returns the full list of all branches (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
    api_instance.api_branch_get_all_branches_get()
except ApiException as e:
    print("Exception when calling BranchApi->apiBranchGetAllBranchesGet: %s\n" % e)

Parameters

Responses

Status: 200 - Success


apiBranchGetBranchGet

Gets the branch from the branch id (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)


/api/Branch/GetBranch

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Branch/GetBranch?branchId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BranchApi;

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

public class BranchApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BranchApi apiInstance = new BranchApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiBranchGetBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchGetBranchGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BranchApi;

public class BranchApiExample {

    public static void main(String[] args) {
        BranchApi apiInstance = new BranchApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiBranchGetBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchGetBranchGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *branchId = 56; //  (optional)

BranchApi *apiInstance = [[BranchApi alloc] init];

// Gets the branch from the branch id (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
[apiInstance apiBranchGetBranchGetWith:branchId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BranchApi()
var opts = { 
  'branchId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBranchGetBranchGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BranchApi();
            var branchId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the branch from the branch id (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
                apiInstance.apiBranchGetBranchGet(branchId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BranchApi.apiBranchGetBranchGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBranchApi();
$branchId = 56; // Integer | 

try {
    $api_instance->apiBranchGetBranchGet($branchId);
} catch (Exception $e) {
    echo 'Exception when calling BranchApi->apiBranchGetBranchGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BranchApi;


my $api_instance = WWW::SwaggerClient::BranchApi->new();
my $branchId = 56; # Integer | 

eval { 
    $api_instance->apiBranchGetBranchGet(branchId => $branchId);
};
if ($@) {
    warn "Exception when calling BranchApi->apiBranchGetBranchGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BranchApi()
branchId = 56 # Integer |  (optional)

try: 
    # Gets the branch from the branch id (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
    api_instance.api_branch_get_branch_get(branchId=branchId)
except ApiException as e:
    print("Exception when calling BranchApi->apiBranchGetBranchGet: %s\n" % e)

Parameters

Query parameters
Name Description
branchId
Integer (int32)

Responses

Status: 200 - Success


apiBranchGetBranchesForGroupIdGet

Get All Branches for a group (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)


/api/Branch/GetBranchesForGroupId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Branch/GetBranchesForGroupId?GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BranchApi;

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

public class BranchApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BranchApi apiInstance = new BranchApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiBranchGetBranchesForGroupIdGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchGetBranchesForGroupIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BranchApi;

public class BranchApiExample {

    public static void main(String[] args) {
        BranchApi apiInstance = new BranchApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiBranchGetBranchesForGroupIdGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchGetBranchesForGroupIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

BranchApi *apiInstance = [[BranchApi alloc] init];

// Get All Branches for a group (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
[apiInstance apiBranchGetBranchesForGroupIdGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BranchApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBranchGetBranchesForGroupIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BranchApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // Get All Branches for a group (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
                apiInstance.apiBranchGetBranchesForGroupIdGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BranchApi.apiBranchGetBranchesForGroupIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBranchApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiBranchGetBranchesForGroupIdGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling BranchApi->apiBranchGetBranchesForGroupIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BranchApi;


my $api_instance = WWW::SwaggerClient::BranchApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiBranchGetBranchesForGroupIdGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling BranchApi->apiBranchGetBranchesForGroupIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BranchApi()
groupId = 56 # Integer |  (optional)

try: 
    # Get All Branches for a group (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
    api_instance.api_branch_get_branches_for_group_id_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling BranchApi->apiBranchGetBranchesForGroupIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiBranchGetBranchesGet

Get All the branches for an agent (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)


/api/Branch/GetBranches

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Branch/GetBranches?agentId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BranchApi;

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

public class BranchApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        BranchApi apiInstance = new BranchApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiBranchGetBranchesGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchGetBranchesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BranchApi;

public class BranchApiExample {

    public static void main(String[] args) {
        BranchApi apiInstance = new BranchApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiBranchGetBranchesGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling BranchApi#apiBranchGetBranchesGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agentId = 56; //  (optional)

BranchApi *apiInstance = [[BranchApi alloc] init];

// Get All the branches for an agent (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
[apiInstance apiBranchGetBranchesGetWith:agentId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.BranchApi()
var opts = { 
  'agentId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiBranchGetBranchesGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new BranchApi();
            var agentId = 56;  // Integer |  (optional) 

            try
            {
                // Get All the branches for an agent (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
                apiInstance.apiBranchGetBranchesGet(agentId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling BranchApi.apiBranchGetBranchesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiBranchApi();
$agentId = 56; // Integer | 

try {
    $api_instance->apiBranchGetBranchesGet($agentId);
} catch (Exception $e) {
    echo 'Exception when calling BranchApi->apiBranchGetBranchesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BranchApi;


my $api_instance = WWW::SwaggerClient::BranchApi->new();
my $agentId = 56; # Integer | 

eval { 
    $api_instance->apiBranchGetBranchesGet(agentId => $agentId);
};
if ($@) {
    warn "Exception when calling BranchApi->apiBranchGetBranchesGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.BranchApi()
agentId = 56 # Integer |  (optional)

try: 
    # Get All the branches for an agent (Roles: Admin, SuperAdmin, GroupUser, AgencyUser)
    api_instance.api_branch_get_branches_get(agentId=agentId)
except ApiException as e:
    print("Exception when calling BranchApi->apiBranchGetBranchesGet: %s\n" % e)

Parameters

Query parameters
Name Description
agentId
Integer (int32)

Responses

Status: 200 - Success


Group

apiGroupAddUpdateGroupNotificationStatusPost

Add Update Group Notification Status (Roles: Admin, SuperAdmin, GroupUser)


/api/Group/AddUpdateGroupNotificationStatus

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Group/AddUpdateGroupNotificationStatus"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GroupApi;

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

public class GroupApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        GroupApi apiInstance = new GroupApi();
        BeagelManagers.Models.NotificationStatus body = ; // BeagelManagers.Models.NotificationStatus | 
        try {
            apiInstance.apiGroupAddUpdateGroupNotificationStatusPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling GroupApi#apiGroupAddUpdateGroupNotificationStatusPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GroupApi;

public class GroupApiExample {

    public static void main(String[] args) {
        GroupApi apiInstance = new GroupApi();
        BeagelManagers.Models.NotificationStatus body = ; // BeagelManagers.Models.NotificationStatus | 
        try {
            apiInstance.apiGroupAddUpdateGroupNotificationStatusPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling GroupApi#apiGroupAddUpdateGroupNotificationStatusPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.NotificationStatus *body = ; //  (optional)

GroupApi *apiInstance = [[GroupApi alloc] init];

// Add Update Group Notification Status (Roles: Admin, SuperAdmin, GroupUser)
[apiInstance apiGroupAddUpdateGroupNotificationStatusPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.GroupApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.NotificationStatus}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiGroupAddUpdateGroupNotificationStatusPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new GroupApi();
            var body = new BeagelManagers.Models.NotificationStatus(); // BeagelManagers.Models.NotificationStatus |  (optional) 

            try
            {
                // Add Update Group Notification Status (Roles: Admin, SuperAdmin, GroupUser)
                apiInstance.apiGroupAddUpdateGroupNotificationStatusPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GroupApi.apiGroupAddUpdateGroupNotificationStatusPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiGroupApi();
$body = ; // BeagelManagers.Models.NotificationStatus | 

try {
    $api_instance->apiGroupAddUpdateGroupNotificationStatusPost($body);
} catch (Exception $e) {
    echo 'Exception when calling GroupApi->apiGroupAddUpdateGroupNotificationStatusPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GroupApi;


my $api_instance = WWW::SwaggerClient::GroupApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.NotificationStatus->new(); # BeagelManagers.Models.NotificationStatus | 

eval { 
    $api_instance->apiGroupAddUpdateGroupNotificationStatusPost(body => $body);
};
if ($@) {
    warn "Exception when calling GroupApi->apiGroupAddUpdateGroupNotificationStatusPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.GroupApi()
body =  # BeagelManagers.Models.NotificationStatus |  (optional)

try: 
    # Add Update Group Notification Status (Roles: Admin, SuperAdmin, GroupUser)
    api_instance.api_group_add_update_group_notification_status_post(body=body)
except ApiException as e:
    print("Exception when calling GroupApi->apiGroupAddUpdateGroupNotificationStatusPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiGroupAddUpdateGroupPost

Add update group (Roles: Admin, SuperAdmin, GroupUser)


/api/Group/AddUpdateGroup

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Group/AddUpdateGroup"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GroupApi;

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

public class GroupApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        GroupApi apiInstance = new GroupApi();
        BeagelManagers.Models.Group body = ; // BeagelManagers.Models.Group | 
        try {
            apiInstance.apiGroupAddUpdateGroupPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling GroupApi#apiGroupAddUpdateGroupPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GroupApi;

public class GroupApiExample {

    public static void main(String[] args) {
        GroupApi apiInstance = new GroupApi();
        BeagelManagers.Models.Group body = ; // BeagelManagers.Models.Group | 
        try {
            apiInstance.apiGroupAddUpdateGroupPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling GroupApi#apiGroupAddUpdateGroupPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Group *body = ; //  (optional)

GroupApi *apiInstance = [[GroupApi alloc] init];

// Add update group (Roles: Admin, SuperAdmin, GroupUser)
[apiInstance apiGroupAddUpdateGroupPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.GroupApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Group}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiGroupAddUpdateGroupPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new GroupApi();
            var body = new BeagelManagers.Models.Group(); // BeagelManagers.Models.Group |  (optional) 

            try
            {
                // Add update group (Roles: Admin, SuperAdmin, GroupUser)
                apiInstance.apiGroupAddUpdateGroupPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GroupApi.apiGroupAddUpdateGroupPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiGroupApi();
$body = ; // BeagelManagers.Models.Group | 

try {
    $api_instance->apiGroupAddUpdateGroupPost($body);
} catch (Exception $e) {
    echo 'Exception when calling GroupApi->apiGroupAddUpdateGroupPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GroupApi;


my $api_instance = WWW::SwaggerClient::GroupApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Group->new(); # BeagelManagers.Models.Group | 

eval { 
    $api_instance->apiGroupAddUpdateGroupPost(body => $body);
};
if ($@) {
    warn "Exception when calling GroupApi->apiGroupAddUpdateGroupPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.GroupApi()
body =  # BeagelManagers.Models.Group |  (optional)

try: 
    # Add update group (Roles: Admin, SuperAdmin, GroupUser)
    api_instance.api_group_add_update_group_post(body=body)
except ApiException as e:
    print("Exception when calling GroupApi->apiGroupAddUpdateGroupPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiGroupAddUpdateGroupUserPost

Add updates group user (Roles: Admin, SuperAdmin, GroupUser)


/api/Group/AddUpdateGroupUser

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Group/AddUpdateGroupUser"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GroupApi;

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

public class GroupApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        GroupApi apiInstance = new GroupApi();
        BeagelManagers.Models.GroupUser body = ; // BeagelManagers.Models.GroupUser | 
        try {
            apiInstance.apiGroupAddUpdateGroupUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling GroupApi#apiGroupAddUpdateGroupUserPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GroupApi;

public class GroupApiExample {

    public static void main(String[] args) {
        GroupApi apiInstance = new GroupApi();
        BeagelManagers.Models.GroupUser body = ; // BeagelManagers.Models.GroupUser | 
        try {
            apiInstance.apiGroupAddUpdateGroupUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling GroupApi#apiGroupAddUpdateGroupUserPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.GroupUser *body = ; //  (optional)

GroupApi *apiInstance = [[GroupApi alloc] init];

// Add updates group user (Roles: Admin, SuperAdmin, GroupUser)
[apiInstance apiGroupAddUpdateGroupUserPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.GroupApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.GroupUser}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiGroupAddUpdateGroupUserPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new GroupApi();
            var body = new BeagelManagers.Models.GroupUser(); // BeagelManagers.Models.GroupUser |  (optional) 

            try
            {
                // Add updates group user (Roles: Admin, SuperAdmin, GroupUser)
                apiInstance.apiGroupAddUpdateGroupUserPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GroupApi.apiGroupAddUpdateGroupUserPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiGroupApi();
$body = ; // BeagelManagers.Models.GroupUser | 

try {
    $api_instance->apiGroupAddUpdateGroupUserPost($body);
} catch (Exception $e) {
    echo 'Exception when calling GroupApi->apiGroupAddUpdateGroupUserPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GroupApi;


my $api_instance = WWW::SwaggerClient::GroupApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.GroupUser->new(); # BeagelManagers.Models.GroupUser | 

eval { 
    $api_instance->apiGroupAddUpdateGroupUserPost(body => $body);
};
if ($@) {
    warn "Exception when calling GroupApi->apiGroupAddUpdateGroupUserPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.GroupApi()
body =  # BeagelManagers.Models.GroupUser |  (optional)

try: 
    # Add updates group user (Roles: Admin, SuperAdmin, GroupUser)
    api_instance.api_group_add_update_group_user_post(body=body)
except ApiException as e:
    print("Exception when calling GroupApi->apiGroupAddUpdateGroupUserPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiGroupGetGroupGet

Get group by group id (Roles: Admin, SuperAdmin)


/api/Group/GetGroup

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Group/GetGroup?groupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GroupApi;

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

public class GroupApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        GroupApi apiInstance = new GroupApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiGroupGetGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling GroupApi#apiGroupGetGroupGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GroupApi;

public class GroupApiExample {

    public static void main(String[] args) {
        GroupApi apiInstance = new GroupApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiGroupGetGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling GroupApi#apiGroupGetGroupGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

GroupApi *apiInstance = [[GroupApi alloc] init];

// Get group by group id (Roles: Admin, SuperAdmin)
[apiInstance apiGroupGetGroupGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.GroupApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiGroupGetGroupGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new GroupApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // Get group by group id (Roles: Admin, SuperAdmin)
                apiInstance.apiGroupGetGroupGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GroupApi.apiGroupGetGroupGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiGroupApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiGroupGetGroupGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling GroupApi->apiGroupGetGroupGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GroupApi;


my $api_instance = WWW::SwaggerClient::GroupApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiGroupGetGroupGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling GroupApi->apiGroupGetGroupGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.GroupApi()
groupId = 56 # Integer |  (optional)

try: 
    # Get group by group id (Roles: Admin, SuperAdmin)
    api_instance.api_group_get_group_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling GroupApi->apiGroupGetGroupGet: %s\n" % e)

Parameters

Query parameters
Name Description
groupId
Integer (int32)

Responses

Status: 200 - Success


apiGroupGetGroupNotificationStatusesGet

Get Group Notification Statuses by group id (Roles: GroupUser)


/api/Group/GetGroupNotificationStatuses

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Group/GetGroupNotificationStatuses?groupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GroupApi;

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

public class GroupApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        GroupApi apiInstance = new GroupApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiGroupGetGroupNotificationStatusesGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling GroupApi#apiGroupGetGroupNotificationStatusesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GroupApi;

public class GroupApiExample {

    public static void main(String[] args) {
        GroupApi apiInstance = new GroupApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiGroupGetGroupNotificationStatusesGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling GroupApi#apiGroupGetGroupNotificationStatusesGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

GroupApi *apiInstance = [[GroupApi alloc] init];

// Get Group Notification Statuses by group id (Roles: GroupUser)
[apiInstance apiGroupGetGroupNotificationStatusesGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.GroupApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiGroupGetGroupNotificationStatusesGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new GroupApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // Get Group Notification Statuses by group id (Roles: GroupUser)
                apiInstance.apiGroupGetGroupNotificationStatusesGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GroupApi.apiGroupGetGroupNotificationStatusesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiGroupApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiGroupGetGroupNotificationStatusesGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling GroupApi->apiGroupGetGroupNotificationStatusesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GroupApi;


my $api_instance = WWW::SwaggerClient::GroupApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiGroupGetGroupNotificationStatusesGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling GroupApi->apiGroupGetGroupNotificationStatusesGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.GroupApi()
groupId = 56 # Integer |  (optional)

try: 
    # Get Group Notification Statuses by group id (Roles: GroupUser)
    api_instance.api_group_get_group_notification_statuses_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling GroupApi->apiGroupGetGroupNotificationStatusesGet: %s\n" % e)

Parameters

Query parameters
Name Description
groupId
Integer (int32)

Responses

Status: 200 - Success


apiGroupGetGroupsGet

Get all groups (Roles: Admin, SuperAdmin)


/api/Group/GetGroups

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Group/GetGroups"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GroupApi;

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

public class GroupApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        GroupApi apiInstance = new GroupApi();
        try {
            apiInstance.apiGroupGetGroupsGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling GroupApi#apiGroupGetGroupsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GroupApi;

public class GroupApiExample {

    public static void main(String[] args) {
        GroupApi apiInstance = new GroupApi();
        try {
            apiInstance.apiGroupGetGroupsGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling GroupApi#apiGroupGetGroupsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

GroupApi *apiInstance = [[GroupApi alloc] init];

// Get all groups (Roles: Admin, SuperAdmin)
[apiInstance apiGroupGetGroupsGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.GroupApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiGroupGetGroupsGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new GroupApi();

            try
            {
                // Get all groups (Roles: Admin, SuperAdmin)
                apiInstance.apiGroupGetGroupsGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GroupApi.apiGroupGetGroupsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiGroupApi();

try {
    $api_instance->apiGroupGetGroupsGet();
} catch (Exception $e) {
    echo 'Exception when calling GroupApi->apiGroupGetGroupsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GroupApi;


my $api_instance = WWW::SwaggerClient::GroupApi->new();

eval { 
    $api_instance->apiGroupGetGroupsGet();
};
if ($@) {
    warn "Exception when calling GroupApi->apiGroupGetGroupsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.GroupApi()

try: 
    # Get all groups (Roles: Admin, SuperAdmin)
    api_instance.api_group_get_groups_get()
except ApiException as e:
    print("Exception when calling GroupApi->apiGroupGetGroupsGet: %s\n" % e)

Parameters

Responses

Status: 200 - Success


Helper

apiHelperGetPropertiesGet

Get a list of properties (Roles: All)


/api/Helper/GetProperties

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Helper/GetProperties?NoOfBeds=&Status="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.HelperApi;

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

public class HelperApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        HelperApi apiInstance = new HelperApi();
        String noOfBeds = noOfBeds_example; // String | 
        String status = status_example; // String | 
        try {
            apiInstance.apiHelperGetPropertiesGet(noOfBeds, status);
        } catch (ApiException e) {
            System.err.println("Exception when calling HelperApi#apiHelperGetPropertiesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.HelperApi;

public class HelperApiExample {

    public static void main(String[] args) {
        HelperApi apiInstance = new HelperApi();
        String noOfBeds = noOfBeds_example; // String | 
        String status = status_example; // String | 
        try {
            apiInstance.apiHelperGetPropertiesGet(noOfBeds, status);
        } catch (ApiException e) {
            System.err.println("Exception when calling HelperApi#apiHelperGetPropertiesGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *noOfBeds = noOfBeds_example; //  (optional)
String *status = status_example; //  (optional)

HelperApi *apiInstance = [[HelperApi alloc] init];

// Get a list of properties (Roles: All)
[apiInstance apiHelperGetPropertiesGetWith:noOfBeds
    status:status
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.HelperApi()
var opts = { 
  'noOfBeds': noOfBeds_example, // {{String}} 
  'status': status_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiHelperGetPropertiesGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new HelperApi();
            var noOfBeds = noOfBeds_example;  // String |  (optional) 
            var status = status_example;  // String |  (optional) 

            try
            {
                // Get a list of properties (Roles: All)
                apiInstance.apiHelperGetPropertiesGet(noOfBeds, status);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling HelperApi.apiHelperGetPropertiesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiHelperApi();
$noOfBeds = noOfBeds_example; // String | 
$status = status_example; // String | 

try {
    $api_instance->apiHelperGetPropertiesGet($noOfBeds, $status);
} catch (Exception $e) {
    echo 'Exception when calling HelperApi->apiHelperGetPropertiesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::HelperApi;


my $api_instance = WWW::SwaggerClient::HelperApi->new();
my $noOfBeds = noOfBeds_example; # String | 
my $status = status_example; # String | 

eval { 
    $api_instance->apiHelperGetPropertiesGet(noOfBeds => $noOfBeds, status => $status);
};
if ($@) {
    warn "Exception when calling HelperApi->apiHelperGetPropertiesGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.HelperApi()
noOfBeds = noOfBeds_example # String |  (optional)
status = status_example # String |  (optional)

try: 
    # Get a list of properties (Roles: All)
    api_instance.api_helper_get_properties_get(noOfBeds=noOfBeds, status=status)
except ApiException as e:
    print("Exception when calling HelperApi->apiHelperGetPropertiesGet: %s\n" % e)

Parameters

Query parameters
Name Description
NoOfBeds
String
Status
String

Responses

Status: 200 - Success


apiHelperGetPropertyDescriptionGet

Get Property type description based on property type (Roles: All)


/api/Helper/GetPropertyDescription

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Helper/GetPropertyDescription?PropertyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.HelperApi;

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

public class HelperApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        HelperApi apiInstance = new HelperApi();
        Integer propertyId = 56; // Integer | 
        try {
            apiInstance.apiHelperGetPropertyDescriptionGet(propertyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling HelperApi#apiHelperGetPropertyDescriptionGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.HelperApi;

public class HelperApiExample {

    public static void main(String[] args) {
        HelperApi apiInstance = new HelperApi();
        Integer propertyId = 56; // Integer | 
        try {
            apiInstance.apiHelperGetPropertyDescriptionGet(propertyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling HelperApi#apiHelperGetPropertyDescriptionGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *propertyId = 56; //  (optional)

HelperApi *apiInstance = [[HelperApi alloc] init];

// Get Property type description based on property type (Roles: All)
[apiInstance apiHelperGetPropertyDescriptionGetWith:propertyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.HelperApi()
var opts = { 
  'propertyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiHelperGetPropertyDescriptionGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new HelperApi();
            var propertyId = 56;  // Integer |  (optional) 

            try
            {
                // Get Property type description based on property type (Roles: All)
                apiInstance.apiHelperGetPropertyDescriptionGet(propertyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling HelperApi.apiHelperGetPropertyDescriptionGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiHelperApi();
$propertyId = 56; // Integer | 

try {
    $api_instance->apiHelperGetPropertyDescriptionGet($propertyId);
} catch (Exception $e) {
    echo 'Exception when calling HelperApi->apiHelperGetPropertyDescriptionGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::HelperApi;


my $api_instance = WWW::SwaggerClient::HelperApi->new();
my $propertyId = 56; # Integer | 

eval { 
    $api_instance->apiHelperGetPropertyDescriptionGet(propertyId => $propertyId);
};
if ($@) {
    warn "Exception when calling HelperApi->apiHelperGetPropertyDescriptionGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.HelperApi()
propertyId = 56 # Integer |  (optional)

try: 
    # Get Property type description based on property type (Roles: All)
    api_instance.api_helper_get_property_description_get(propertyId=propertyId)
except ApiException as e:
    print("Exception when calling HelperApi->apiHelperGetPropertyDescriptionGet: %s\n" % e)

Parameters

Query parameters
Name Description
PropertyId
Integer (int32)

Responses

Status: 200 - Success


apiHelperGetPropertyTypesGet

Retuns a list of Property types (Roles: All)


/api/Helper/GetPropertyTypes

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Helper/GetPropertyTypes?PropertyDescription="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.HelperApi;

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

public class HelperApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        HelperApi apiInstance = new HelperApi();
        String propertyDescription = propertyDescription_example; // String | 
        try {
            apiInstance.apiHelperGetPropertyTypesGet(propertyDescription);
        } catch (ApiException e) {
            System.err.println("Exception when calling HelperApi#apiHelperGetPropertyTypesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.HelperApi;

public class HelperApiExample {

    public static void main(String[] args) {
        HelperApi apiInstance = new HelperApi();
        String propertyDescription = propertyDescription_example; // String | 
        try {
            apiInstance.apiHelperGetPropertyTypesGet(propertyDescription);
        } catch (ApiException e) {
            System.err.println("Exception when calling HelperApi#apiHelperGetPropertyTypesGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *propertyDescription = propertyDescription_example; //  (optional)

HelperApi *apiInstance = [[HelperApi alloc] init];

// Retuns a list of Property types (Roles: All)
[apiInstance apiHelperGetPropertyTypesGetWith:propertyDescription
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.HelperApi()
var opts = { 
  'propertyDescription': propertyDescription_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiHelperGetPropertyTypesGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new HelperApi();
            var propertyDescription = propertyDescription_example;  // String |  (optional) 

            try
            {
                // Retuns a list of Property types (Roles: All)
                apiInstance.apiHelperGetPropertyTypesGet(propertyDescription);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling HelperApi.apiHelperGetPropertyTypesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiHelperApi();
$propertyDescription = propertyDescription_example; // String | 

try {
    $api_instance->apiHelperGetPropertyTypesGet($propertyDescription);
} catch (Exception $e) {
    echo 'Exception when calling HelperApi->apiHelperGetPropertyTypesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::HelperApi;


my $api_instance = WWW::SwaggerClient::HelperApi->new();
my $propertyDescription = propertyDescription_example; # String | 

eval { 
    $api_instance->apiHelperGetPropertyTypesGet(propertyDescription => $propertyDescription);
};
if ($@) {
    warn "Exception when calling HelperApi->apiHelperGetPropertyTypesGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.HelperApi()
propertyDescription = propertyDescription_example # String |  (optional)

try: 
    # Retuns a list of Property types (Roles: All)
    api_instance.api_helper_get_property_types_get(propertyDescription=propertyDescription)
except ApiException as e:
    print("Exception when calling HelperApi->apiHelperGetPropertyTypesGet: %s\n" % e)

Parameters

Query parameters
Name Description
PropertyDescription
String

Responses

Status: 200 - Success


apiHelperGetSaleTypesGet

Retuns a list of Sale types (Roles: All)


/api/Helper/GetSaleTypes

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Helper/GetSaleTypes"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.HelperApi;

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

public class HelperApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        HelperApi apiInstance = new HelperApi();
        try {
            apiInstance.apiHelperGetSaleTypesGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling HelperApi#apiHelperGetSaleTypesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.HelperApi;

public class HelperApiExample {

    public static void main(String[] args) {
        HelperApi apiInstance = new HelperApi();
        try {
            apiInstance.apiHelperGetSaleTypesGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling HelperApi#apiHelperGetSaleTypesGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

HelperApi *apiInstance = [[HelperApi alloc] init];

// Retuns a list of Sale types (Roles: All)
[apiInstance apiHelperGetSaleTypesGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.HelperApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiHelperGetSaleTypesGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new HelperApi();

            try
            {
                // Retuns a list of Sale types (Roles: All)
                apiInstance.apiHelperGetSaleTypesGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling HelperApi.apiHelperGetSaleTypesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiHelperApi();

try {
    $api_instance->apiHelperGetSaleTypesGet();
} catch (Exception $e) {
    echo 'Exception when calling HelperApi->apiHelperGetSaleTypesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::HelperApi;


my $api_instance = WWW::SwaggerClient::HelperApi->new();

eval { 
    $api_instance->apiHelperGetSaleTypesGet();
};
if ($@) {
    warn "Exception when calling HelperApi->apiHelperGetSaleTypesGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.HelperApi()

try: 
    # Retuns a list of Sale types (Roles: All)
    api_instance.api_helper_get_sale_types_get()
except ApiException as e:
    print("Exception when calling HelperApi->apiHelperGetSaleTypesGet: %s\n" % e)

Parameters

Responses

Status: 200 - Success


apiHelperGetShortCodesGet

Returns a list of shortcode for Email/SMS notification templates


/api/Helper/GetShortCodes

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Helper/GetShortCodes"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.HelperApi;

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

public class HelperApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        HelperApi apiInstance = new HelperApi();
        try {
            apiInstance.apiHelperGetShortCodesGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling HelperApi#apiHelperGetShortCodesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.HelperApi;

public class HelperApiExample {

    public static void main(String[] args) {
        HelperApi apiInstance = new HelperApi();
        try {
            apiInstance.apiHelperGetShortCodesGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling HelperApi#apiHelperGetShortCodesGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

HelperApi *apiInstance = [[HelperApi alloc] init];

// Returns a list of shortcode for Email/SMS notification templates
[apiInstance apiHelperGetShortCodesGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.HelperApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiHelperGetShortCodesGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new HelperApi();

            try
            {
                // Returns a list of shortcode for Email/SMS notification templates
                apiInstance.apiHelperGetShortCodesGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling HelperApi.apiHelperGetShortCodesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiHelperApi();

try {
    $api_instance->apiHelperGetShortCodesGet();
} catch (Exception $e) {
    echo 'Exception when calling HelperApi->apiHelperGetShortCodesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::HelperApi;


my $api_instance = WWW::SwaggerClient::HelperApi->new();

eval { 
    $api_instance->apiHelperGetShortCodesGet();
};
if ($@) {
    warn "Exception when calling HelperApi->apiHelperGetShortCodesGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.HelperApi()

try: 
    # Returns a list of shortcode for Email/SMS notification templates
    api_instance.api_helper_get_short_codes_get()
except ApiException as e:
    print("Exception when calling HelperApi->apiHelperGetShortCodesGet: %s\n" % e)

Parameters

Responses

Status: 200 - Success


Jobs

apiJobsAddUpdateJobPost

Add updates a job (Roles: Admin, SuperAdmin)


/api/Jobs/AddUpdateJob

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Jobs/AddUpdateJob"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.JobsApi;

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

public class JobsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        JobsApi apiInstance = new JobsApi();
        BeagelEnterprise.Models.JobsDto body = ; // BeagelEnterprise.Models.JobsDto | 
        try {
            apiInstance.apiJobsAddUpdateJobPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling JobsApi#apiJobsAddUpdateJobPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.JobsApi;

public class JobsApiExample {

    public static void main(String[] args) {
        JobsApi apiInstance = new JobsApi();
        BeagelEnterprise.Models.JobsDto body = ; // BeagelEnterprise.Models.JobsDto | 
        try {
            apiInstance.apiJobsAddUpdateJobPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling JobsApi#apiJobsAddUpdateJobPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.JobsDto *body = ; //  (optional)

JobsApi *apiInstance = [[JobsApi alloc] init];

// Add updates a job (Roles: Admin, SuperAdmin)
[apiInstance apiJobsAddUpdateJobPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.JobsApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.JobsDto}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiJobsAddUpdateJobPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new JobsApi();
            var body = new BeagelEnterprise.Models.JobsDto(); // BeagelEnterprise.Models.JobsDto |  (optional) 

            try
            {
                // Add updates a job (Roles: Admin, SuperAdmin)
                apiInstance.apiJobsAddUpdateJobPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling JobsApi.apiJobsAddUpdateJobPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiJobsApi();
$body = ; // BeagelEnterprise.Models.JobsDto | 

try {
    $api_instance->apiJobsAddUpdateJobPost($body);
} catch (Exception $e) {
    echo 'Exception when calling JobsApi->apiJobsAddUpdateJobPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::JobsApi;


my $api_instance = WWW::SwaggerClient::JobsApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.JobsDto->new(); # BeagelEnterprise.Models.JobsDto | 

eval { 
    $api_instance->apiJobsAddUpdateJobPost(body => $body);
};
if ($@) {
    warn "Exception when calling JobsApi->apiJobsAddUpdateJobPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.JobsApi()
body =  # BeagelEnterprise.Models.JobsDto |  (optional)

try: 
    # Add updates a job (Roles: Admin, SuperAdmin)
    api_instance.api_jobs_add_update_job_post(body=body)
except ApiException as e:
    print("Exception when calling JobsApi->apiJobsAddUpdateJobPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiJobsDeleteJobByIdDelete

Deletes a job by id (Roles: Admin, SuperAdmin)


/api/Jobs/DeleteJobById

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Jobs/DeleteJobById?Id="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.JobsApi;

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

public class JobsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        JobsApi apiInstance = new JobsApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiJobsDeleteJobByIdDelete(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling JobsApi#apiJobsDeleteJobByIdDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.JobsApi;

public class JobsApiExample {

    public static void main(String[] args) {
        JobsApi apiInstance = new JobsApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiJobsDeleteJobByIdDelete(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling JobsApi#apiJobsDeleteJobByIdDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  (optional)

JobsApi *apiInstance = [[JobsApi alloc] init];

// Deletes a job by id (Roles: Admin, SuperAdmin)
[apiInstance apiJobsDeleteJobByIdDeleteWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.JobsApi()
var opts = { 
  'id': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiJobsDeleteJobByIdDelete(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new JobsApi();
            var id = 56;  // Integer |  (optional) 

            try
            {
                // Deletes a job by id (Roles: Admin, SuperAdmin)
                apiInstance.apiJobsDeleteJobByIdDelete(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling JobsApi.apiJobsDeleteJobByIdDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiJobsApi();
$id = 56; // Integer | 

try {
    $api_instance->apiJobsDeleteJobByIdDelete($id);
} catch (Exception $e) {
    echo 'Exception when calling JobsApi->apiJobsDeleteJobByIdDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::JobsApi;


my $api_instance = WWW::SwaggerClient::JobsApi->new();
my $id = 56; # Integer | 

eval { 
    $api_instance->apiJobsDeleteJobByIdDelete(id => $id);
};
if ($@) {
    warn "Exception when calling JobsApi->apiJobsDeleteJobByIdDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.JobsApi()
id = 56 # Integer |  (optional)

try: 
    # Deletes a job by id (Roles: Admin, SuperAdmin)
    api_instance.api_jobs_delete_job_by_id_delete(id=id)
except ApiException as e:
    print("Exception when calling JobsApi->apiJobsDeleteJobByIdDelete: %s\n" % e)

Parameters

Query parameters
Name Description
Id
Integer (int32)

Responses

Status: 200 - Success


apiJobsGetJobByIdGet

Get job by id (Roles: Admin, SuperAdmin)


/api/Jobs/GetJobById

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Jobs/GetJobById?Id="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.JobsApi;

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

public class JobsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        JobsApi apiInstance = new JobsApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiJobsGetJobByIdGet(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling JobsApi#apiJobsGetJobByIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.JobsApi;

public class JobsApiExample {

    public static void main(String[] args) {
        JobsApi apiInstance = new JobsApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiJobsGetJobByIdGet(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling JobsApi#apiJobsGetJobByIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  (optional)

JobsApi *apiInstance = [[JobsApi alloc] init];

// Get job by id (Roles: Admin, SuperAdmin)
[apiInstance apiJobsGetJobByIdGetWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.JobsApi()
var opts = { 
  'id': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiJobsGetJobByIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new JobsApi();
            var id = 56;  // Integer |  (optional) 

            try
            {
                // Get job by id (Roles: Admin, SuperAdmin)
                apiInstance.apiJobsGetJobByIdGet(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling JobsApi.apiJobsGetJobByIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiJobsApi();
$id = 56; // Integer | 

try {
    $api_instance->apiJobsGetJobByIdGet($id);
} catch (Exception $e) {
    echo 'Exception when calling JobsApi->apiJobsGetJobByIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::JobsApi;


my $api_instance = WWW::SwaggerClient::JobsApi->new();
my $id = 56; # Integer | 

eval { 
    $api_instance->apiJobsGetJobByIdGet(id => $id);
};
if ($@) {
    warn "Exception when calling JobsApi->apiJobsGetJobByIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.JobsApi()
id = 56 # Integer |  (optional)

try: 
    # Get job by id (Roles: Admin, SuperAdmin)
    api_instance.api_jobs_get_job_by_id_get(id=id)
except ApiException as e:
    print("Exception when calling JobsApi->apiJobsGetJobByIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
Id
Integer (int32)

Responses

Status: 200 - Success


apiJobsGetJobsGet

Get all jobs (Roles: Admin, SuperAdmin)


/api/Jobs/GetJobs

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Jobs/GetJobs?AgencyId=&BranchId=&AgentId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.JobsApi;

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

public class JobsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        JobsApi apiInstance = new JobsApi();
        Integer agencyId = 56; // Integer | 
        Integer branchId = 56; // Integer | 
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiJobsGetJobsGet(agencyId, branchId, agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling JobsApi#apiJobsGetJobsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.JobsApi;

public class JobsApiExample {

    public static void main(String[] args) {
        JobsApi apiInstance = new JobsApi();
        Integer agencyId = 56; // Integer | 
        Integer branchId = 56; // Integer | 
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiJobsGetJobsGet(agencyId, branchId, agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling JobsApi#apiJobsGetJobsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional) (default to 0)
Integer *branchId = 56; //  (optional) (default to 0)
Integer *agentId = 56; //  (optional) (default to 0)

JobsApi *apiInstance = [[JobsApi alloc] init];

// Get all jobs (Roles: Admin, SuperAdmin)
[apiInstance apiJobsGetJobsGetWith:agencyId
    branchId:branchId
    agentId:agentId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.JobsApi()
var opts = { 
  'agencyId': 56, // {{Integer}} 
  'branchId': 56, // {{Integer}} 
  'agentId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiJobsGetJobsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new JobsApi();
            var agencyId = 56;  // Integer |  (optional)  (default to 0)
            var branchId = 56;  // Integer |  (optional)  (default to 0)
            var agentId = 56;  // Integer |  (optional)  (default to 0)

            try
            {
                // Get all jobs (Roles: Admin, SuperAdmin)
                apiInstance.apiJobsGetJobsGet(agencyId, branchId, agentId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling JobsApi.apiJobsGetJobsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiJobsApi();
$agencyId = 56; // Integer | 
$branchId = 56; // Integer | 
$agentId = 56; // Integer | 

try {
    $api_instance->apiJobsGetJobsGet($agencyId, $branchId, $agentId);
} catch (Exception $e) {
    echo 'Exception when calling JobsApi->apiJobsGetJobsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::JobsApi;


my $api_instance = WWW::SwaggerClient::JobsApi->new();
my $agencyId = 56; # Integer | 
my $branchId = 56; # Integer | 
my $agentId = 56; # Integer | 

eval { 
    $api_instance->apiJobsGetJobsGet(agencyId => $agencyId, branchId => $branchId, agentId => $agentId);
};
if ($@) {
    warn "Exception when calling JobsApi->apiJobsGetJobsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.JobsApi()
agencyId = 56 # Integer |  (optional) (default to 0)
branchId = 56 # Integer |  (optional) (default to 0)
agentId = 56 # Integer |  (optional) (default to 0)

try: 
    # Get all jobs (Roles: Admin, SuperAdmin)
    api_instance.api_jobs_get_jobs_get(agencyId=agencyId, branchId=branchId, agentId=agentId)
except ApiException as e:
    print("Exception when calling JobsApi->apiJobsGetJobsGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)
BranchId
Integer (int32)
AgentId
Integer (int32)

Responses

Status: 200 - Success


apiJobsGetJobsLogsGet

get job logs (Roles: Admin, SuperAdmin)


/api/Jobs/GetJobsLogs

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Jobs/GetJobsLogs?AgencyId=&BranchId=&AgentId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.JobsApi;

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

public class JobsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        JobsApi apiInstance = new JobsApi();
        Integer agencyId = 56; // Integer | 
        Integer branchId = 56; // Integer | 
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiJobsGetJobsLogsGet(agencyId, branchId, agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling JobsApi#apiJobsGetJobsLogsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.JobsApi;

public class JobsApiExample {

    public static void main(String[] args) {
        JobsApi apiInstance = new JobsApi();
        Integer agencyId = 56; // Integer | 
        Integer branchId = 56; // Integer | 
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiJobsGetJobsLogsGet(agencyId, branchId, agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling JobsApi#apiJobsGetJobsLogsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional) (default to 0)
Integer *branchId = 56; //  (optional) (default to 0)
Integer *agentId = 56; //  (optional) (default to 0)

JobsApi *apiInstance = [[JobsApi alloc] init];

// get job logs (Roles: Admin, SuperAdmin)
[apiInstance apiJobsGetJobsLogsGetWith:agencyId
    branchId:branchId
    agentId:agentId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.JobsApi()
var opts = { 
  'agencyId': 56, // {{Integer}} 
  'branchId': 56, // {{Integer}} 
  'agentId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiJobsGetJobsLogsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new JobsApi();
            var agencyId = 56;  // Integer |  (optional)  (default to 0)
            var branchId = 56;  // Integer |  (optional)  (default to 0)
            var agentId = 56;  // Integer |  (optional)  (default to 0)

            try
            {
                // get job logs (Roles: Admin, SuperAdmin)
                apiInstance.apiJobsGetJobsLogsGet(agencyId, branchId, agentId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling JobsApi.apiJobsGetJobsLogsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiJobsApi();
$agencyId = 56; // Integer | 
$branchId = 56; // Integer | 
$agentId = 56; // Integer | 

try {
    $api_instance->apiJobsGetJobsLogsGet($agencyId, $branchId, $agentId);
} catch (Exception $e) {
    echo 'Exception when calling JobsApi->apiJobsGetJobsLogsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::JobsApi;


my $api_instance = WWW::SwaggerClient::JobsApi->new();
my $agencyId = 56; # Integer | 
my $branchId = 56; # Integer | 
my $agentId = 56; # Integer | 

eval { 
    $api_instance->apiJobsGetJobsLogsGet(agencyId => $agencyId, branchId => $branchId, agentId => $agentId);
};
if ($@) {
    warn "Exception when calling JobsApi->apiJobsGetJobsLogsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.JobsApi()
agencyId = 56 # Integer |  (optional) (default to 0)
branchId = 56 # Integer |  (optional) (default to 0)
agentId = 56 # Integer |  (optional) (default to 0)

try: 
    # get job logs (Roles: Admin, SuperAdmin)
    api_instance.api_jobs_get_jobs_logs_get(agencyId=agencyId, branchId=branchId, agentId=agentId)
except ApiException as e:
    print("Exception when calling JobsApi->apiJobsGetJobsLogsGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)
BranchId
Integer (int32)
AgentId
Integer (int32)

Responses

Status: 200 - Success


apiJobsGetjobByUserIdGet

Get job by user id (Roles: Admin, SuperAdmin)


/api/Jobs/GetjobByUserId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Jobs/GetjobByUserId?UserId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.JobsApi;

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

public class JobsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        JobsApi apiInstance = new JobsApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiJobsGetjobByUserIdGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling JobsApi#apiJobsGetjobByUserIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.JobsApi;

public class JobsApiExample {

    public static void main(String[] args) {
        JobsApi apiInstance = new JobsApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiJobsGetjobByUserIdGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling JobsApi#apiJobsGetjobByUserIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *userId = userId_example; //  (optional)

JobsApi *apiInstance = [[JobsApi alloc] init];

// Get job by user id (Roles: Admin, SuperAdmin)
[apiInstance apiJobsGetjobByUserIdGetWith:userId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.JobsApi()
var opts = { 
  'userId': userId_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiJobsGetjobByUserIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new JobsApi();
            var userId = userId_example;  // String |  (optional) 

            try
            {
                // Get job by user id (Roles: Admin, SuperAdmin)
                apiInstance.apiJobsGetjobByUserIdGet(userId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling JobsApi.apiJobsGetjobByUserIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiJobsApi();
$userId = userId_example; // String | 

try {
    $api_instance->apiJobsGetjobByUserIdGet($userId);
} catch (Exception $e) {
    echo 'Exception when calling JobsApi->apiJobsGetjobByUserIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::JobsApi;


my $api_instance = WWW::SwaggerClient::JobsApi->new();
my $userId = userId_example; # String | 

eval { 
    $api_instance->apiJobsGetjobByUserIdGet(userId => $userId);
};
if ($@) {
    warn "Exception when calling JobsApi->apiJobsGetjobByUserIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.JobsApi()
userId = userId_example # String |  (optional)

try: 
    # Get job by user id (Roles: Admin, SuperAdmin)
    api_instance.api_jobs_getjob_by_user_id_get(userId=userId)
except ApiException as e:
    print("Exception when calling JobsApi->apiJobsGetjobByUserIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
UserId
String

Responses

Status: 200 - Success


Notification

apiNotificationAddUpdateNotificationDictionaryPost

Add updates notifications (Roles: Admin, SuperAdmin, GroupUser)


/api/Notification/AddUpdateNotificationDictionary

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Notification/AddUpdateNotificationDictionary"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.NotificationApi;

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

public class NotificationApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        NotificationApi apiInstance = new NotificationApi();
        BeagelManagers.Models.NotificationDictionary body = ; // BeagelManagers.Models.NotificationDictionary | 
        try {
            apiInstance.apiNotificationAddUpdateNotificationDictionaryPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling NotificationApi#apiNotificationAddUpdateNotificationDictionaryPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.NotificationApi;

public class NotificationApiExample {

    public static void main(String[] args) {
        NotificationApi apiInstance = new NotificationApi();
        BeagelManagers.Models.NotificationDictionary body = ; // BeagelManagers.Models.NotificationDictionary | 
        try {
            apiInstance.apiNotificationAddUpdateNotificationDictionaryPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling NotificationApi#apiNotificationAddUpdateNotificationDictionaryPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.NotificationDictionary *body = ; //  (optional)

NotificationApi *apiInstance = [[NotificationApi alloc] init];

// Add updates notifications (Roles: Admin, SuperAdmin, GroupUser)
[apiInstance apiNotificationAddUpdateNotificationDictionaryPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.NotificationApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.NotificationDictionary}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiNotificationAddUpdateNotificationDictionaryPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new NotificationApi();
            var body = new BeagelManagers.Models.NotificationDictionary(); // BeagelManagers.Models.NotificationDictionary |  (optional) 

            try
            {
                // Add updates notifications (Roles: Admin, SuperAdmin, GroupUser)
                apiInstance.apiNotificationAddUpdateNotificationDictionaryPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling NotificationApi.apiNotificationAddUpdateNotificationDictionaryPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiNotificationApi();
$body = ; // BeagelManagers.Models.NotificationDictionary | 

try {
    $api_instance->apiNotificationAddUpdateNotificationDictionaryPost($body);
} catch (Exception $e) {
    echo 'Exception when calling NotificationApi->apiNotificationAddUpdateNotificationDictionaryPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::NotificationApi;


my $api_instance = WWW::SwaggerClient::NotificationApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.NotificationDictionary->new(); # BeagelManagers.Models.NotificationDictionary | 

eval { 
    $api_instance->apiNotificationAddUpdateNotificationDictionaryPost(body => $body);
};
if ($@) {
    warn "Exception when calling NotificationApi->apiNotificationAddUpdateNotificationDictionaryPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.NotificationApi()
body =  # BeagelManagers.Models.NotificationDictionary |  (optional)

try: 
    # Add updates notifications (Roles: Admin, SuperAdmin, GroupUser)
    api_instance.api_notification_add_update_notification_dictionary_post(body=body)
except ApiException as e:
    print("Exception when calling NotificationApi->apiNotificationAddUpdateNotificationDictionaryPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiNotificationGetBundlesGet

Returns a list of SMS bundles


/api/Notification/GetBundles

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Notification/GetBundles?category="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.NotificationApi;

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

public class NotificationApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        NotificationApi apiInstance = new NotificationApi();
        BeagelManagers.Models.NotificationCategory category = ; // BeagelManagers.Models.NotificationCategory | 
        try {
            apiInstance.apiNotificationGetBundlesGet(category);
        } catch (ApiException e) {
            System.err.println("Exception when calling NotificationApi#apiNotificationGetBundlesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.NotificationApi;

public class NotificationApiExample {

    public static void main(String[] args) {
        NotificationApi apiInstance = new NotificationApi();
        BeagelManagers.Models.NotificationCategory category = ; // BeagelManagers.Models.NotificationCategory | 
        try {
            apiInstance.apiNotificationGetBundlesGet(category);
        } catch (ApiException e) {
            System.err.println("Exception when calling NotificationApi#apiNotificationGetBundlesGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.NotificationCategory *category = ; //  (optional)

NotificationApi *apiInstance = [[NotificationApi alloc] init];

// Returns a list of SMS bundles
[apiInstance apiNotificationGetBundlesGetWith:category
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.NotificationApi()
var opts = { 
  'category':  // {{BeagelManagers.Models.NotificationCategory}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiNotificationGetBundlesGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new NotificationApi();
            var category = new BeagelManagers.Models.NotificationCategory(); // BeagelManagers.Models.NotificationCategory |  (optional) 

            try
            {
                // Returns a list of SMS bundles
                apiInstance.apiNotificationGetBundlesGet(category);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling NotificationApi.apiNotificationGetBundlesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiNotificationApi();
$category = ; // BeagelManagers.Models.NotificationCategory | 

try {
    $api_instance->apiNotificationGetBundlesGet($category);
} catch (Exception $e) {
    echo 'Exception when calling NotificationApi->apiNotificationGetBundlesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::NotificationApi;


my $api_instance = WWW::SwaggerClient::NotificationApi->new();
my $category = ; # BeagelManagers.Models.NotificationCategory | 

eval { 
    $api_instance->apiNotificationGetBundlesGet(category => $category);
};
if ($@) {
    warn "Exception when calling NotificationApi->apiNotificationGetBundlesGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.NotificationApi()
category =  # BeagelManagers.Models.NotificationCategory |  (optional)

try: 
    # Returns a list of SMS bundles
    api_instance.api_notification_get_bundles_get(category=category)
except ApiException as e:
    print("Exception when calling NotificationApi->apiNotificationGetBundlesGet: %s\n" % e)

Parameters

Query parameters
Name Description
category
BeagelManagers.Models.NotificationCategory

Responses

Status: 200 - Success


apiNotificationGetNotificaitionsGet

Get notifications based on roles (Roles: Admin, SuperAdmin, GroupUser)


/api/Notification/GetNotificaitions

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Notification/GetNotificaitions?Role=&GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.NotificationApi;

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

public class NotificationApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        NotificationApi apiInstance = new NotificationApi();
        String role = role_example; // String | 
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiNotificationGetNotificaitionsGet(role, groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling NotificationApi#apiNotificationGetNotificaitionsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.NotificationApi;

public class NotificationApiExample {

    public static void main(String[] args) {
        NotificationApi apiInstance = new NotificationApi();
        String role = role_example; // String | 
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiNotificationGetNotificaitionsGet(role, groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling NotificationApi#apiNotificationGetNotificaitionsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *role = role_example; //  (optional)
Integer *groupId = 56; //  (optional)

NotificationApi *apiInstance = [[NotificationApi alloc] init];

// Get notifications based on roles (Roles: Admin, SuperAdmin, GroupUser)
[apiInstance apiNotificationGetNotificaitionsGetWith:role
    groupId:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.NotificationApi()
var opts = { 
  'role': role_example, // {{String}} 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiNotificationGetNotificaitionsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new NotificationApi();
            var role = role_example;  // String |  (optional) 
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // Get notifications based on roles (Roles: Admin, SuperAdmin, GroupUser)
                apiInstance.apiNotificationGetNotificaitionsGet(role, groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling NotificationApi.apiNotificationGetNotificaitionsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiNotificationApi();
$role = role_example; // String | 
$groupId = 56; // Integer | 

try {
    $api_instance->apiNotificationGetNotificaitionsGet($role, $groupId);
} catch (Exception $e) {
    echo 'Exception when calling NotificationApi->apiNotificationGetNotificaitionsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::NotificationApi;


my $api_instance = WWW::SwaggerClient::NotificationApi->new();
my $role = role_example; # String | 
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiNotificationGetNotificaitionsGet(role => $role, groupId => $groupId);
};
if ($@) {
    warn "Exception when calling NotificationApi->apiNotificationGetNotificaitionsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.NotificationApi()
role = role_example # String |  (optional)
groupId = 56 # Integer |  (optional)

try: 
    # Get notifications based on roles (Roles: Admin, SuperAdmin, GroupUser)
    api_instance.api_notification_get_notificaitions_get(role=role, groupId=groupId)
except ApiException as e:
    print("Exception when calling NotificationApi->apiNotificationGetNotificaitionsGet: %s\n" % e)

Parameters

Query parameters
Name Description
Role
String
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiNotificationGetNotificationByIdGet

Get notification by notication id (Roles: Admin, SuperAdmin, GroupUser)


/api/Notification/GetNotificationById

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Notification/GetNotificationById?Id="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.NotificationApi;

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

public class NotificationApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        NotificationApi apiInstance = new NotificationApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiNotificationGetNotificationByIdGet(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling NotificationApi#apiNotificationGetNotificationByIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.NotificationApi;

public class NotificationApiExample {

    public static void main(String[] args) {
        NotificationApi apiInstance = new NotificationApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiNotificationGetNotificationByIdGet(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling NotificationApi#apiNotificationGetNotificationByIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  (optional)

NotificationApi *apiInstance = [[NotificationApi alloc] init];

// Get notification by notication id (Roles: Admin, SuperAdmin, GroupUser)
[apiInstance apiNotificationGetNotificationByIdGetWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.NotificationApi()
var opts = { 
  'id': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiNotificationGetNotificationByIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new NotificationApi();
            var id = 56;  // Integer |  (optional) 

            try
            {
                // Get notification by notication id (Roles: Admin, SuperAdmin, GroupUser)
                apiInstance.apiNotificationGetNotificationByIdGet(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling NotificationApi.apiNotificationGetNotificationByIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiNotificationApi();
$id = 56; // Integer | 

try {
    $api_instance->apiNotificationGetNotificationByIdGet($id);
} catch (Exception $e) {
    echo 'Exception when calling NotificationApi->apiNotificationGetNotificationByIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::NotificationApi;


my $api_instance = WWW::SwaggerClient::NotificationApi->new();
my $id = 56; # Integer | 

eval { 
    $api_instance->apiNotificationGetNotificationByIdGet(id => $id);
};
if ($@) {
    warn "Exception when calling NotificationApi->apiNotificationGetNotificationByIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.NotificationApi()
id = 56 # Integer |  (optional)

try: 
    # Get notification by notication id (Roles: Admin, SuperAdmin, GroupUser)
    api_instance.api_notification_get_notification_by_id_get(id=id)
except ApiException as e:
    print("Exception when calling NotificationApi->apiNotificationGetNotificationByIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
Id
Integer (int32)

Responses

Status: 200 - Success


apiNotificationResetNotificationPost

Reset notification (Roles: Admin, SuperAdmin, GroupUser)


/api/Notification/ResetNotification

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Notification/ResetNotification?NotificationId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.NotificationApi;

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

public class NotificationApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        NotificationApi apiInstance = new NotificationApi();
        Integer notificationId = 56; // Integer | 
        try {
            apiInstance.apiNotificationResetNotificationPost(notificationId);
        } catch (ApiException e) {
            System.err.println("Exception when calling NotificationApi#apiNotificationResetNotificationPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.NotificationApi;

public class NotificationApiExample {

    public static void main(String[] args) {
        NotificationApi apiInstance = new NotificationApi();
        Integer notificationId = 56; // Integer | 
        try {
            apiInstance.apiNotificationResetNotificationPost(notificationId);
        } catch (ApiException e) {
            System.err.println("Exception when calling NotificationApi#apiNotificationResetNotificationPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *notificationId = 56; //  (optional)

NotificationApi *apiInstance = [[NotificationApi alloc] init];

// Reset notification (Roles: Admin, SuperAdmin, GroupUser)
[apiInstance apiNotificationResetNotificationPostWith:notificationId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.NotificationApi()
var opts = { 
  'notificationId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiNotificationResetNotificationPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new NotificationApi();
            var notificationId = 56;  // Integer |  (optional) 

            try
            {
                // Reset notification (Roles: Admin, SuperAdmin, GroupUser)
                apiInstance.apiNotificationResetNotificationPost(notificationId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling NotificationApi.apiNotificationResetNotificationPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiNotificationApi();
$notificationId = 56; // Integer | 

try {
    $api_instance->apiNotificationResetNotificationPost($notificationId);
} catch (Exception $e) {
    echo 'Exception when calling NotificationApi->apiNotificationResetNotificationPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::NotificationApi;


my $api_instance = WWW::SwaggerClient::NotificationApi->new();
my $notificationId = 56; # Integer | 

eval { 
    $api_instance->apiNotificationResetNotificationPost(notificationId => $notificationId);
};
if ($@) {
    warn "Exception when calling NotificationApi->apiNotificationResetNotificationPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.NotificationApi()
notificationId = 56 # Integer |  (optional)

try: 
    # Reset notification (Roles: Admin, SuperAdmin, GroupUser)
    api_instance.api_notification_reset_notification_post(notificationId=notificationId)
except ApiException as e:
    print("Exception when calling NotificationApi->apiNotificationResetNotificationPost: %s\n" % e)

Parameters

Query parameters
Name Description
NotificationId
Integer (int32)

Responses

Status: 200 - Success


notificationMakePaymentAgentIdBundleIdQuantityGet


/notification/make-payment/{agentId}/{bundleId}/{quantity}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//notification/make-payment/{agentId}/{bundleId}/{quantity}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.NotificationApi;

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

public class NotificationApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        NotificationApi apiInstance = new NotificationApi();
        String agentId = agentId_example; // String | 
        Integer bundleId = 56; // Integer | 
        Integer quantity = 56; // Integer | 
        try {
            apiInstance.notificationMakePaymentAgentIdBundleIdQuantityGet(agentId, bundleId, quantity);
        } catch (ApiException e) {
            System.err.println("Exception when calling NotificationApi#notificationMakePaymentAgentIdBundleIdQuantityGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.NotificationApi;

public class NotificationApiExample {

    public static void main(String[] args) {
        NotificationApi apiInstance = new NotificationApi();
        String agentId = agentId_example; // String | 
        Integer bundleId = 56; // Integer | 
        Integer quantity = 56; // Integer | 
        try {
            apiInstance.notificationMakePaymentAgentIdBundleIdQuantityGet(agentId, bundleId, quantity);
        } catch (ApiException e) {
            System.err.println("Exception when calling NotificationApi#notificationMakePaymentAgentIdBundleIdQuantityGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *agentId = agentId_example; // 
Integer *bundleId = 56; // 
Integer *quantity = 56; // 

NotificationApi *apiInstance = [[NotificationApi alloc] init];

[apiInstance notificationMakePaymentAgentIdBundleIdQuantityGetWith:agentId
    bundleId:bundleId
    quantity:quantity
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.NotificationApi()
var agentId = agentId_example; // {{String}} 
var bundleId = 56; // {{Integer}} 
var quantity = 56; // {{Integer}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.notificationMakePaymentAgentIdBundleIdQuantityGet(agentId, bundleId, quantity, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new NotificationApi();
            var agentId = agentId_example;  // String | 
            var bundleId = 56;  // Integer | 
            var quantity = 56;  // Integer | 

            try
            {
                apiInstance.notificationMakePaymentAgentIdBundleIdQuantityGet(agentId, bundleId, quantity);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling NotificationApi.notificationMakePaymentAgentIdBundleIdQuantityGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiNotificationApi();
$agentId = agentId_example; // String | 
$bundleId = 56; // Integer | 
$quantity = 56; // Integer | 

try {
    $api_instance->notificationMakePaymentAgentIdBundleIdQuantityGet($agentId, $bundleId, $quantity);
} catch (Exception $e) {
    echo 'Exception when calling NotificationApi->notificationMakePaymentAgentIdBundleIdQuantityGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::NotificationApi;


my $api_instance = WWW::SwaggerClient::NotificationApi->new();
my $agentId = agentId_example; # String | 
my $bundleId = 56; # Integer | 
my $quantity = 56; # Integer | 

eval { 
    $api_instance->notificationMakePaymentAgentIdBundleIdQuantityGet(agentId => $agentId, bundleId => $bundleId, quantity => $quantity);
};
if ($@) {
    warn "Exception when calling NotificationApi->notificationMakePaymentAgentIdBundleIdQuantityGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.NotificationApi()
agentId = agentId_example # String | 
bundleId = 56 # Integer | 
quantity = 56 # Integer | 

try: 
    api_instance.notification_make_payment_agent_id_bundle_id_quantity_get(agentId, bundleId, quantity)
except ApiException as e:
    print("Exception when calling NotificationApi->notificationMakePaymentAgentIdBundleIdQuantityGet: %s\n" % e)

Parameters

Path parameters
Name Description
agentId*
String
Required
bundleId*
Integer (int32)
Required
quantity*
Integer (int32)
Required

Responses

Status: 200 - Success


Reports

apiReportGetAgentPerformancesForBranchGet

Get agent performance for branch (Roles: BranchUser)


/api/Report/GetAgentPerformancesForBranch

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Report/GetAgentPerformancesForBranch?BranchId=&FromDate=&ToDate="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        String branchId = branchId_example; // String | 
        String fromDate = fromDate_example; // String | 
        String toDate = toDate_example; // String | 
        try {
            apiInstance.apiReportGetAgentPerformancesForBranchGet(branchId, fromDate, toDate);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportGetAgentPerformancesForBranchGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        String branchId = branchId_example; // String | 
        String fromDate = fromDate_example; // String | 
        String toDate = toDate_example; // String | 
        try {
            apiInstance.apiReportGetAgentPerformancesForBranchGet(branchId, fromDate, toDate);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportGetAgentPerformancesForBranchGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *branchId = branchId_example; //  (optional)
String *fromDate = fromDate_example; //  (optional)
String *toDate = toDate_example; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get agent performance for branch (Roles: BranchUser)
[apiInstance apiReportGetAgentPerformancesForBranchGetWith:branchId
    fromDate:fromDate
    toDate:toDate
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'branchId': branchId_example, // {{String}} 
  'fromDate': fromDate_example, // {{String}} 
  'toDate': toDate_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportGetAgentPerformancesForBranchGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var branchId = branchId_example;  // String |  (optional) 
            var fromDate = fromDate_example;  // String |  (optional) 
            var toDate = toDate_example;  // String |  (optional) 

            try
            {
                // Get agent performance for branch (Roles: BranchUser)
                apiInstance.apiReportGetAgentPerformancesForBranchGet(branchId, fromDate, toDate);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportGetAgentPerformancesForBranchGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$branchId = branchId_example; // String | 
$fromDate = fromDate_example; // String | 
$toDate = toDate_example; // String | 

try {
    $api_instance->apiReportGetAgentPerformancesForBranchGet($branchId, $fromDate, $toDate);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportGetAgentPerformancesForBranchGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $branchId = branchId_example; # String | 
my $fromDate = fromDate_example; # String | 
my $toDate = toDate_example; # String | 

eval { 
    $api_instance->apiReportGetAgentPerformancesForBranchGet(branchId => $branchId, fromDate => $fromDate, toDate => $toDate);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportGetAgentPerformancesForBranchGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
branchId = branchId_example # String |  (optional)
fromDate = fromDate_example # String |  (optional)
toDate = toDate_example # String |  (optional)

try: 
    # Get agent performance for branch (Roles: BranchUser)
    api_instance.api_report_get_agent_performances_for_branch_get(branchId=branchId, fromDate=fromDate, toDate=toDate)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportGetAgentPerformancesForBranchGet: %s\n" % e)

Parameters

Query parameters
Name Description
BranchId
String
FromDate
String
ToDate
String

Responses

Status: 200 - Success


apiReportGetBestPerformingAgencyGet

Get best performing agency (Roles: GroupUser)


/api/Report/GetBestPerformingAgency

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Report/GetBestPerformingAgency?GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportGetBestPerformingAgencyGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportGetBestPerformingAgencyGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportGetBestPerformingAgencyGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportGetBestPerformingAgencyGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get best performing agency (Roles: GroupUser)
[apiInstance apiReportGetBestPerformingAgencyGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportGetBestPerformingAgencyGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // Get best performing agency (Roles: GroupUser)
                apiInstance.apiReportGetBestPerformingAgencyGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportGetBestPerformingAgencyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiReportGetBestPerformingAgencyGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportGetBestPerformingAgencyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiReportGetBestPerformingAgencyGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportGetBestPerformingAgencyGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
groupId = 56 # Integer |  (optional)

try: 
    # Get best performing agency (Roles: GroupUser)
    api_instance.api_report_get_best_performing_agency_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportGetBestPerformingAgencyGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiReportGetBestPerformingAgentGet

Get the best performing agent (Roles: AgencyUser, SuperAdmin, Admin)


/api/Report/GetBestPerformingAgent

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Report/GetBestPerformingAgent?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportGetBestPerformingAgentGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportGetBestPerformingAgentGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportGetBestPerformingAgentGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportGetBestPerformingAgentGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get the best performing agent (Roles: AgencyUser, SuperAdmin, Admin)
[apiInstance apiReportGetBestPerformingAgentGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportGetBestPerformingAgentGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // Get the best performing agent (Roles: AgencyUser, SuperAdmin, Admin)
                apiInstance.apiReportGetBestPerformingAgentGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportGetBestPerformingAgentGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiReportGetBestPerformingAgentGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportGetBestPerformingAgentGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiReportGetBestPerformingAgentGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportGetBestPerformingAgentGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agencyId = 56 # Integer |  (optional)

try: 
    # Get the best performing agent (Roles: AgencyUser, SuperAdmin, Admin)
    api_instance.api_report_get_best_performing_agent_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportGetBestPerformingAgentGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiReportGetBestPerformingBranchGet

Get the best performing branch (Roles: AgencyUser)


/api/Report/GetBestPerformingBranch

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Report/GetBestPerformingBranch?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportGetBestPerformingBranchGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportGetBestPerformingBranchGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportGetBestPerformingBranchGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportGetBestPerformingBranchGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get the best performing branch (Roles: AgencyUser)
[apiInstance apiReportGetBestPerformingBranchGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportGetBestPerformingBranchGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // Get the best performing branch (Roles: AgencyUser)
                apiInstance.apiReportGetBestPerformingBranchGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportGetBestPerformingBranchGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiReportGetBestPerformingBranchGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportGetBestPerformingBranchGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiReportGetBestPerformingBranchGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportGetBestPerformingBranchGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agencyId = 56 # Integer |  (optional)

try: 
    # Get the best performing branch (Roles: AgencyUser)
    api_instance.api_report_get_best_performing_branch_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportGetBestPerformingBranchGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiReportGetBranchPerformancesForAgencyGet

Get branch performance for agency. (Roles: AgencyUser)


/api/Report/GetBranchPerformancesForAgency

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Report/GetBranchPerformancesForAgency?AgencyId=&FromDate=&ToDate="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        String agencyId = agencyId_example; // String | 
        String fromDate = fromDate_example; // String | 
        String toDate = toDate_example; // String | 
        try {
            apiInstance.apiReportGetBranchPerformancesForAgencyGet(agencyId, fromDate, toDate);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportGetBranchPerformancesForAgencyGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        String agencyId = agencyId_example; // String | 
        String fromDate = fromDate_example; // String | 
        String toDate = toDate_example; // String | 
        try {
            apiInstance.apiReportGetBranchPerformancesForAgencyGet(agencyId, fromDate, toDate);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportGetBranchPerformancesForAgencyGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *agencyId = agencyId_example; //  (optional)
String *fromDate = fromDate_example; //  (optional)
String *toDate = toDate_example; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get branch performance for agency. (Roles: AgencyUser)
[apiInstance apiReportGetBranchPerformancesForAgencyGetWith:agencyId
    fromDate:fromDate
    toDate:toDate
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agencyId': agencyId_example, // {{String}} 
  'fromDate': fromDate_example, // {{String}} 
  'toDate': toDate_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportGetBranchPerformancesForAgencyGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agencyId = agencyId_example;  // String |  (optional) 
            var fromDate = fromDate_example;  // String |  (optional) 
            var toDate = toDate_example;  // String |  (optional) 

            try
            {
                // Get branch performance for agency. (Roles: AgencyUser)
                apiInstance.apiReportGetBranchPerformancesForAgencyGet(agencyId, fromDate, toDate);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportGetBranchPerformancesForAgencyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agencyId = agencyId_example; // String | 
$fromDate = fromDate_example; // String | 
$toDate = toDate_example; // String | 

try {
    $api_instance->apiReportGetBranchPerformancesForAgencyGet($agencyId, $fromDate, $toDate);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportGetBranchPerformancesForAgencyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agencyId = agencyId_example; # String | 
my $fromDate = fromDate_example; # String | 
my $toDate = toDate_example; # String | 

eval { 
    $api_instance->apiReportGetBranchPerformancesForAgencyGet(agencyId => $agencyId, fromDate => $fromDate, toDate => $toDate);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportGetBranchPerformancesForAgencyGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agencyId = agencyId_example # String |  (optional)
fromDate = fromDate_example # String |  (optional)
toDate = toDate_example # String |  (optional)

try: 
    # Get branch performance for agency. (Roles: AgencyUser)
    api_instance.api_report_get_branch_performances_for_agency_get(agencyId=agencyId, fromDate=fromDate, toDate=toDate)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportGetBranchPerformancesForAgencyGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
String
FromDate
String
ToDate
String

Responses

Status: 200 - Success


apiReportGetPerformingAgentForWeekBranchGet

Get the performing agent for the current week. (Roles: BranchUser)


/api/Report/GetPerformingAgentForWeekBranch

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Report/GetPerformingAgentForWeekBranch?BranchId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportGetPerformingAgentForWeekBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportGetPerformingAgentForWeekBranchGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportGetPerformingAgentForWeekBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportGetPerformingAgentForWeekBranchGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *branchId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get the performing agent for the current week. (Roles: BranchUser)
[apiInstance apiReportGetPerformingAgentForWeekBranchGetWith:branchId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'branchId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportGetPerformingAgentForWeekBranchGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var branchId = 56;  // Integer |  (optional) 

            try
            {
                // Get the performing agent for the current week. (Roles: BranchUser)
                apiInstance.apiReportGetPerformingAgentForWeekBranchGet(branchId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportGetPerformingAgentForWeekBranchGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$branchId = 56; // Integer | 

try {
    $api_instance->apiReportGetPerformingAgentForWeekBranchGet($branchId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportGetPerformingAgentForWeekBranchGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $branchId = 56; # Integer | 

eval { 
    $api_instance->apiReportGetPerformingAgentForWeekBranchGet(branchId => $branchId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportGetPerformingAgentForWeekBranchGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
branchId = 56 # Integer |  (optional)

try: 
    # Get the performing agent for the current week. (Roles: BranchUser)
    api_instance.api_report_get_performing_agent_for_week_branch_get(branchId=branchId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportGetPerformingAgentForWeekBranchGet: %s\n" % e)

Parameters

Query parameters
Name Description
BranchId
Integer (int32)

Responses

Status: 200 - Success


apiReportsBidderTrendsFilterGet

Get bidder trends filter (Roles: All)


/api/Reports/BidderTrendsFilter

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/BidderTrendsFilter?Status=&FromDate=&ToDate=&AgencyId=&BranchId=&Role=&AgentId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        String status = status_example; // String | 
        String fromDate = fromDate_example; // String | 
        String toDate = toDate_example; // String | 
        String agencyId = agencyId_example; // String | 
        String branchId = branchId_example; // String | 
        String role = role_example; // String | 
        String agentId = agentId_example; // String | 
        try {
            apiInstance.apiReportsBidderTrendsFilterGet(status, fromDate, toDate, agencyId, branchId, role, agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsBidderTrendsFilterGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        String status = status_example; // String | 
        String fromDate = fromDate_example; // String | 
        String toDate = toDate_example; // String | 
        String agencyId = agencyId_example; // String | 
        String branchId = branchId_example; // String | 
        String role = role_example; // String | 
        String agentId = agentId_example; // String | 
        try {
            apiInstance.apiReportsBidderTrendsFilterGet(status, fromDate, toDate, agencyId, branchId, role, agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsBidderTrendsFilterGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *status = status_example; //  (optional)
String *fromDate = fromDate_example; //  (optional)
String *toDate = toDate_example; //  (optional)
String *agencyId = agencyId_example; //  (optional)
String *branchId = branchId_example; //  (optional)
String *role = role_example; //  (optional)
String *agentId = agentId_example; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get bidder trends filter (Roles: All)
[apiInstance apiReportsBidderTrendsFilterGetWith:status
    fromDate:fromDate
    toDate:toDate
    agencyId:agencyId
    branchId:branchId
    role:role
    agentId:agentId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'status': status_example, // {{String}} 
  'fromDate': fromDate_example, // {{String}} 
  'toDate': toDate_example, // {{String}} 
  'agencyId': agencyId_example, // {{String}} 
  'branchId': branchId_example, // {{String}} 
  'role': role_example, // {{String}} 
  'agentId': agentId_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsBidderTrendsFilterGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var status = status_example;  // String |  (optional) 
            var fromDate = fromDate_example;  // String |  (optional) 
            var toDate = toDate_example;  // String |  (optional) 
            var agencyId = agencyId_example;  // String |  (optional) 
            var branchId = branchId_example;  // String |  (optional) 
            var role = role_example;  // String |  (optional) 
            var agentId = agentId_example;  // String |  (optional) 

            try
            {
                // Get bidder trends filter (Roles: All)
                apiInstance.apiReportsBidderTrendsFilterGet(status, fromDate, toDate, agencyId, branchId, role, agentId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsBidderTrendsFilterGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$status = status_example; // String | 
$fromDate = fromDate_example; // String | 
$toDate = toDate_example; // String | 
$agencyId = agencyId_example; // String | 
$branchId = branchId_example; // String | 
$role = role_example; // String | 
$agentId = agentId_example; // String | 

try {
    $api_instance->apiReportsBidderTrendsFilterGet($status, $fromDate, $toDate, $agencyId, $branchId, $role, $agentId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsBidderTrendsFilterGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $status = status_example; # String | 
my $fromDate = fromDate_example; # String | 
my $toDate = toDate_example; # String | 
my $agencyId = agencyId_example; # String | 
my $branchId = branchId_example; # String | 
my $role = role_example; # String | 
my $agentId = agentId_example; # String | 

eval { 
    $api_instance->apiReportsBidderTrendsFilterGet(status => $status, fromDate => $fromDate, toDate => $toDate, agencyId => $agencyId, branchId => $branchId, role => $role, agentId => $agentId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsBidderTrendsFilterGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
status = status_example # String |  (optional)
fromDate = fromDate_example # String |  (optional)
toDate = toDate_example # String |  (optional)
agencyId = agencyId_example # String |  (optional)
branchId = branchId_example # String |  (optional)
role = role_example # String |  (optional)
agentId = agentId_example # String |  (optional)

try: 
    # Get bidder trends filter (Roles: All)
    api_instance.api_reports_bidder_trends_filter_get(status=status, fromDate=fromDate, toDate=toDate, agencyId=agencyId, branchId=branchId, role=role, agentId=agentId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsBidderTrendsFilterGet: %s\n" % e)

Parameters

Query parameters
Name Description
Status
String
FromDate
String
ToDate
String
AgencyId
String
BranchId
String
Role
String
AgentId
String

Responses

Status: 200 - Success


apiReportsGetAmountOfBidsAgentGet

Gets the total amount of bids by agent id (Roles: Agent)


/api/Reports/GetAmountOfBidsAgent

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetAmountOfBidsAgent?AgentId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetAmountOfBidsAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetAmountOfBidsAgentGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetAmountOfBidsAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetAmountOfBidsAgentGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agentId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Gets the total amount of bids by agent id (Roles: Agent)
[apiInstance apiReportsGetAmountOfBidsAgentGetWith:agentId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agentId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetAmountOfBidsAgentGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agentId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the total amount of bids by agent id (Roles: Agent)
                apiInstance.apiReportsGetAmountOfBidsAgentGet(agentId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetAmountOfBidsAgentGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agentId = 56; // Integer | 

try {
    $api_instance->apiReportsGetAmountOfBidsAgentGet($agentId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetAmountOfBidsAgentGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agentId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetAmountOfBidsAgentGet(agentId => $agentId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetAmountOfBidsAgentGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agentId = 56 # Integer |  (optional)

try: 
    # Gets the total amount of bids by agent id (Roles: Agent)
    api_instance.api_reports_get_amount_of_bids_agent_get(agentId=agentId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetAmountOfBidsAgentGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgentId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetAmountOfBidsForWeekForAgencyGet

SignalR --> Get total Amounts in bid for Agency (Roles: AgencyUser, SuperAdmin, Admin)


/api/Reports/GetAmountOfBidsForWeekForAgency

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetAmountOfBidsForWeekForAgency?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetAmountOfBidsForWeekForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetAmountOfBidsForWeekForAgencyGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetAmountOfBidsForWeekForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetAmountOfBidsForWeekForAgencyGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// SignalR --> Get total Amounts in bid for Agency (Roles: AgencyUser, SuperAdmin, Admin)
[apiInstance apiReportsGetAmountOfBidsForWeekForAgencyGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetAmountOfBidsForWeekForAgencyGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // SignalR --> Get total Amounts in bid for Agency (Roles: AgencyUser, SuperAdmin, Admin)
                apiInstance.apiReportsGetAmountOfBidsForWeekForAgencyGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetAmountOfBidsForWeekForAgencyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiReportsGetAmountOfBidsForWeekForAgencyGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetAmountOfBidsForWeekForAgencyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetAmountOfBidsForWeekForAgencyGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetAmountOfBidsForWeekForAgencyGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agencyId = 56 # Integer |  (optional)

try: 
    # SignalR --> Get total Amounts in bid for Agency (Roles: AgencyUser, SuperAdmin, Admin)
    api_instance.api_reports_get_amount_of_bids_for_week_for_agency_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetAmountOfBidsForWeekForAgencyGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetAmountOfBidsForWeekForBranchGet

SignalR --> Get total Amounts in bid for Branch (Roles: BranchUser)


/api/Reports/GetAmountOfBidsForWeekForBranch

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetAmountOfBidsForWeekForBranch?BranchId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetAmountOfBidsForWeekForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetAmountOfBidsForWeekForBranchGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetAmountOfBidsForWeekForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetAmountOfBidsForWeekForBranchGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *branchId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// SignalR --> Get total Amounts in bid for Branch (Roles: BranchUser)
[apiInstance apiReportsGetAmountOfBidsForWeekForBranchGetWith:branchId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'branchId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetAmountOfBidsForWeekForBranchGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var branchId = 56;  // Integer |  (optional) 

            try
            {
                // SignalR --> Get total Amounts in bid for Branch (Roles: BranchUser)
                apiInstance.apiReportsGetAmountOfBidsForWeekForBranchGet(branchId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetAmountOfBidsForWeekForBranchGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$branchId = 56; // Integer | 

try {
    $api_instance->apiReportsGetAmountOfBidsForWeekForBranchGet($branchId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetAmountOfBidsForWeekForBranchGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $branchId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetAmountOfBidsForWeekForBranchGet(branchId => $branchId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetAmountOfBidsForWeekForBranchGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
branchId = 56 # Integer |  (optional)

try: 
    # SignalR --> Get total Amounts in bid for Branch (Roles: BranchUser)
    api_instance.api_reports_get_amount_of_bids_for_week_for_branch_get(branchId=branchId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetAmountOfBidsForWeekForBranchGet: %s\n" % e)

Parameters

Query parameters
Name Description
BranchId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetAmountOfBidsForWeekForGroupGet

SignalR --> Get total Amounts in bid for Group (Roles: GroupUser)


/api/Reports/GetAmountOfBidsForWeekForGroup

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetAmountOfBidsForWeekForGroup?GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetAmountOfBidsForWeekForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetAmountOfBidsForWeekForGroupGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetAmountOfBidsForWeekForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetAmountOfBidsForWeekForGroupGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// SignalR --> Get total Amounts in bid for Group (Roles: GroupUser)
[apiInstance apiReportsGetAmountOfBidsForWeekForGroupGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetAmountOfBidsForWeekForGroupGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // SignalR --> Get total Amounts in bid for Group (Roles: GroupUser)
                apiInstance.apiReportsGetAmountOfBidsForWeekForGroupGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetAmountOfBidsForWeekForGroupGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiReportsGetAmountOfBidsForWeekForGroupGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetAmountOfBidsForWeekForGroupGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetAmountOfBidsForWeekForGroupGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetAmountOfBidsForWeekForGroupGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
groupId = 56 # Integer |  (optional)

try: 
    # SignalR --> Get total Amounts in bid for Group (Roles: GroupUser)
    api_instance.api_reports_get_amount_of_bids_for_week_for_group_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetAmountOfBidsForWeekForGroupGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetBidForCurrentWeekAgentGet

Gets the total bids for the rolling week by agent id (Roles: Agent)


/api/Reports/GetBidForCurrentWeekAgent

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetBidForCurrentWeekAgent?AgentId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetBidForCurrentWeekAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetBidForCurrentWeekAgentGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetBidForCurrentWeekAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetBidForCurrentWeekAgentGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agentId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Gets the total bids for the rolling week by agent id (Roles: Agent)
[apiInstance apiReportsGetBidForCurrentWeekAgentGetWith:agentId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agentId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetBidForCurrentWeekAgentGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agentId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the total bids for the rolling week by agent id (Roles: Agent)
                apiInstance.apiReportsGetBidForCurrentWeekAgentGet(agentId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetBidForCurrentWeekAgentGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agentId = 56; // Integer | 

try {
    $api_instance->apiReportsGetBidForCurrentWeekAgentGet($agentId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetBidForCurrentWeekAgentGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agentId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetBidForCurrentWeekAgentGet(agentId => $agentId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetBidForCurrentWeekAgentGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agentId = 56 # Integer |  (optional)

try: 
    # Gets the total bids for the rolling week by agent id (Roles: Agent)
    api_instance.api_reports_get_bid_for_current_week_agent_get(agentId=agentId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetBidForCurrentWeekAgentGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgentId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetBidsForWeekForAgencyGet

Get Bids for the current week for Agency (Roles: AgencyUser, SuperAdmin, Admin)


/api/Reports/GetBidsForWeekForAgency

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetBidsForWeekForAgency?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetBidsForWeekForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetBidsForWeekForAgencyGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetBidsForWeekForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetBidsForWeekForAgencyGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get Bids for the current week for Agency (Roles: AgencyUser, SuperAdmin, Admin)
[apiInstance apiReportsGetBidsForWeekForAgencyGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetBidsForWeekForAgencyGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // Get Bids for the current week for Agency (Roles: AgencyUser, SuperAdmin, Admin)
                apiInstance.apiReportsGetBidsForWeekForAgencyGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetBidsForWeekForAgencyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiReportsGetBidsForWeekForAgencyGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetBidsForWeekForAgencyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetBidsForWeekForAgencyGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetBidsForWeekForAgencyGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agencyId = 56 # Integer |  (optional)

try: 
    # Get Bids for the current week for Agency (Roles: AgencyUser, SuperAdmin, Admin)
    api_instance.api_reports_get_bids_for_week_for_agency_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetBidsForWeekForAgencyGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetBidsForWeekForBranchGet

Get Bids for the current week for Branch (Roles: BranchUser)


/api/Reports/GetBidsForWeekForBranch

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetBidsForWeekForBranch?BranchId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetBidsForWeekForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetBidsForWeekForBranchGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetBidsForWeekForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetBidsForWeekForBranchGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *branchId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get Bids for the current week for Branch (Roles: BranchUser)
[apiInstance apiReportsGetBidsForWeekForBranchGetWith:branchId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'branchId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetBidsForWeekForBranchGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var branchId = 56;  // Integer |  (optional) 

            try
            {
                // Get Bids for the current week for Branch (Roles: BranchUser)
                apiInstance.apiReportsGetBidsForWeekForBranchGet(branchId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetBidsForWeekForBranchGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$branchId = 56; // Integer | 

try {
    $api_instance->apiReportsGetBidsForWeekForBranchGet($branchId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetBidsForWeekForBranchGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $branchId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetBidsForWeekForBranchGet(branchId => $branchId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetBidsForWeekForBranchGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
branchId = 56 # Integer |  (optional)

try: 
    # Get Bids for the current week for Branch (Roles: BranchUser)
    api_instance.api_reports_get_bids_for_week_for_branch_get(branchId=branchId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetBidsForWeekForBranchGet: %s\n" % e)

Parameters

Query parameters
Name Description
BranchId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetBidsForWeekForGroupGet

Get Bids for the current week for group (Roles: GroupUser)


/api/Reports/GetBidsForWeekForGroup

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetBidsForWeekForGroup?GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetBidsForWeekForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetBidsForWeekForGroupGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetBidsForWeekForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetBidsForWeekForGroupGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get Bids for the current week for group (Roles: GroupUser)
[apiInstance apiReportsGetBidsForWeekForGroupGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetBidsForWeekForGroupGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // Get Bids for the current week for group (Roles: GroupUser)
                apiInstance.apiReportsGetBidsForWeekForGroupGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetBidsForWeekForGroupGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiReportsGetBidsForWeekForGroupGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetBidsForWeekForGroupGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetBidsForWeekForGroupGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetBidsForWeekForGroupGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
groupId = 56 # Integer |  (optional)

try: 
    # Get Bids for the current week for group (Roles: GroupUser)
    api_instance.api_reports_get_bids_for_week_for_group_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetBidsForWeekForGroupGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetListOfNewBiddersForWeekForAgencyGet

Get new bidders for the current week and count for Agency (Roles: AgencyUser, SuperAdmin, Admin)


/api/Reports/GetListOfNewBiddersForWeekForAgency

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetListOfNewBiddersForWeekForAgency?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetListOfNewBiddersForWeekForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetListOfNewBiddersForWeekForAgencyGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetListOfNewBiddersForWeekForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetListOfNewBiddersForWeekForAgencyGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get new bidders for the current week and count for Agency (Roles: AgencyUser, SuperAdmin, Admin)
[apiInstance apiReportsGetListOfNewBiddersForWeekForAgencyGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetListOfNewBiddersForWeekForAgencyGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // Get new bidders for the current week and count for Agency (Roles: AgencyUser, SuperAdmin, Admin)
                apiInstance.apiReportsGetListOfNewBiddersForWeekForAgencyGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetListOfNewBiddersForWeekForAgencyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiReportsGetListOfNewBiddersForWeekForAgencyGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetListOfNewBiddersForWeekForAgencyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetListOfNewBiddersForWeekForAgencyGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetListOfNewBiddersForWeekForAgencyGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agencyId = 56 # Integer |  (optional)

try: 
    # Get new bidders for the current week and count for Agency (Roles: AgencyUser, SuperAdmin, Admin)
    api_instance.api_reports_get_list_of_new_bidders_for_week_for_agency_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetListOfNewBiddersForWeekForAgencyGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetNewBiddersForAgentGet

Gets the new Bidders for an Agent (Roles: Agent)


/api/Reports/GetNewBiddersForAgent

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetNewBiddersForAgent?AgentId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewBiddersForAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewBiddersForAgentGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewBiddersForAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewBiddersForAgentGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agentId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Gets the new Bidders for an Agent (Roles: Agent)
[apiInstance apiReportsGetNewBiddersForAgentGetWith:agentId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agentId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetNewBiddersForAgentGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agentId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the new Bidders for an Agent (Roles: Agent)
                apiInstance.apiReportsGetNewBiddersForAgentGet(agentId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetNewBiddersForAgentGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agentId = 56; // Integer | 

try {
    $api_instance->apiReportsGetNewBiddersForAgentGet($agentId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetNewBiddersForAgentGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agentId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetNewBiddersForAgentGet(agentId => $agentId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetNewBiddersForAgentGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agentId = 56 # Integer |  (optional)

try: 
    # Gets the new Bidders for an Agent (Roles: Agent)
    api_instance.api_reports_get_new_bidders_for_agent_get(agentId=agentId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetNewBiddersForAgentGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgentId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetNewBiddersForWeekAgentGet

Gets the total number of new bidders for the rolling week by agent id (Roles: Agent)


/api/Reports/GetNewBiddersForWeekAgent

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetNewBiddersForWeekAgent?AgentId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewBiddersForWeekAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewBiddersForWeekAgentGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewBiddersForWeekAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewBiddersForWeekAgentGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agentId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Gets the total number of new bidders for the rolling week by agent id (Roles: Agent)
[apiInstance apiReportsGetNewBiddersForWeekAgentGetWith:agentId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agentId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetNewBiddersForWeekAgentGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agentId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the total number of new bidders for the rolling week by agent id (Roles: Agent)
                apiInstance.apiReportsGetNewBiddersForWeekAgentGet(agentId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetNewBiddersForWeekAgentGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agentId = 56; // Integer | 

try {
    $api_instance->apiReportsGetNewBiddersForWeekAgentGet($agentId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetNewBiddersForWeekAgentGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agentId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetNewBiddersForWeekAgentGet(agentId => $agentId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetNewBiddersForWeekAgentGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agentId = 56 # Integer |  (optional)

try: 
    # Gets the total number of new bidders for the rolling week by agent id (Roles: Agent)
    api_instance.api_reports_get_new_bidders_for_week_agent_get(agentId=agentId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetNewBiddersForWeekAgentGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgentId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetNewBiddersForWeekForAgencyGet

SignalR --> Get total no of bidders for this week for Agency (Roles: AgencyUser, SuperAdmin, Admin)


/api/Reports/GetNewBiddersForWeekForAgency

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetNewBiddersForWeekForAgency?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewBiddersForWeekForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewBiddersForWeekForAgencyGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewBiddersForWeekForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewBiddersForWeekForAgencyGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// SignalR --> Get total no of bidders for this week for Agency (Roles: AgencyUser, SuperAdmin, Admin)
[apiInstance apiReportsGetNewBiddersForWeekForAgencyGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetNewBiddersForWeekForAgencyGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // SignalR --> Get total no of bidders for this week for Agency (Roles: AgencyUser, SuperAdmin, Admin)
                apiInstance.apiReportsGetNewBiddersForWeekForAgencyGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetNewBiddersForWeekForAgencyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiReportsGetNewBiddersForWeekForAgencyGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetNewBiddersForWeekForAgencyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetNewBiddersForWeekForAgencyGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetNewBiddersForWeekForAgencyGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agencyId = 56 # Integer |  (optional)

try: 
    # SignalR --> Get total no of bidders for this week for Agency (Roles: AgencyUser, SuperAdmin, Admin)
    api_instance.api_reports_get_new_bidders_for_week_for_agency_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetNewBiddersForWeekForAgencyGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetNewBiddersForWeekForBranchGet

SignalR --> Get total no of bidders for this week for Branch (Roles: BranchUser)


/api/Reports/GetNewBiddersForWeekForBranch

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetNewBiddersForWeekForBranch?BranchId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewBiddersForWeekForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewBiddersForWeekForBranchGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewBiddersForWeekForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewBiddersForWeekForBranchGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *branchId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// SignalR --> Get total no of bidders for this week for Branch (Roles: BranchUser)
[apiInstance apiReportsGetNewBiddersForWeekForBranchGetWith:branchId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'branchId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetNewBiddersForWeekForBranchGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var branchId = 56;  // Integer |  (optional) 

            try
            {
                // SignalR --> Get total no of bidders for this week for Branch (Roles: BranchUser)
                apiInstance.apiReportsGetNewBiddersForWeekForBranchGet(branchId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetNewBiddersForWeekForBranchGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$branchId = 56; // Integer | 

try {
    $api_instance->apiReportsGetNewBiddersForWeekForBranchGet($branchId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetNewBiddersForWeekForBranchGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $branchId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetNewBiddersForWeekForBranchGet(branchId => $branchId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetNewBiddersForWeekForBranchGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
branchId = 56 # Integer |  (optional)

try: 
    # SignalR --> Get total no of bidders for this week for Branch (Roles: BranchUser)
    api_instance.api_reports_get_new_bidders_for_week_for_branch_get(branchId=branchId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetNewBiddersForWeekForBranchGet: %s\n" % e)

Parameters

Query parameters
Name Description
BranchId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetNewBiddersForWeekForGroupGet

SignalR --> Get total no of bidders for this week for group (Roles: GroupUser)


/api/Reports/GetNewBiddersForWeekForGroup

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetNewBiddersForWeekForGroup?GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewBiddersForWeekForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewBiddersForWeekForGroupGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewBiddersForWeekForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewBiddersForWeekForGroupGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// SignalR --> Get total no of bidders for this week for group (Roles: GroupUser)
[apiInstance apiReportsGetNewBiddersForWeekForGroupGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetNewBiddersForWeekForGroupGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // SignalR --> Get total no of bidders for this week for group (Roles: GroupUser)
                apiInstance.apiReportsGetNewBiddersForWeekForGroupGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetNewBiddersForWeekForGroupGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiReportsGetNewBiddersForWeekForGroupGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetNewBiddersForWeekForGroupGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetNewBiddersForWeekForGroupGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetNewBiddersForWeekForGroupGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
groupId = 56 # Integer |  (optional)

try: 
    # SignalR --> Get total no of bidders for this week for group (Roles: GroupUser)
    api_instance.api_reports_get_new_bidders_for_week_for_group_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetNewBiddersForWeekForGroupGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetNewRegisteredBiddersForWeekAgentGet

Get new registered bidders for the week. (Roles: Agent)


/api/Reports/GetNewRegisteredBiddersForWeekAgent

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetNewRegisteredBiddersForWeekAgent?AgentId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewRegisteredBiddersForWeekAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewRegisteredBiddersForWeekAgentGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewRegisteredBiddersForWeekAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewRegisteredBiddersForWeekAgentGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agentId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get new registered bidders for the week. (Roles: Agent)
[apiInstance apiReportsGetNewRegisteredBiddersForWeekAgentGetWith:agentId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agentId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetNewRegisteredBiddersForWeekAgentGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agentId = 56;  // Integer |  (optional) 

            try
            {
                // Get new registered bidders for the week. (Roles: Agent)
                apiInstance.apiReportsGetNewRegisteredBiddersForWeekAgentGet(agentId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetNewRegisteredBiddersForWeekAgentGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agentId = 56; // Integer | 

try {
    $api_instance->apiReportsGetNewRegisteredBiddersForWeekAgentGet($agentId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetNewRegisteredBiddersForWeekAgentGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agentId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetNewRegisteredBiddersForWeekAgentGet(agentId => $agentId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetNewRegisteredBiddersForWeekAgentGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agentId = 56 # Integer |  (optional)

try: 
    # Get new registered bidders for the week. (Roles: Agent)
    api_instance.api_reports_get_new_registered_bidders_for_week_agent_get(agentId=agentId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetNewRegisteredBiddersForWeekAgentGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgentId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetNewRegisteredBiddersForWeekForAgencyGet

Get new registered bidders for the week for Agency (Roles: AgencyUser, SuperAdmin, Admin)


/api/Reports/GetNewRegisteredBiddersForWeekForAgency

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetNewRegisteredBiddersForWeekForAgency?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewRegisteredBiddersForWeekForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewRegisteredBiddersForWeekForAgencyGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewRegisteredBiddersForWeekForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewRegisteredBiddersForWeekForAgencyGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get new registered bidders for the week for Agency (Roles: AgencyUser, SuperAdmin, Admin)
[apiInstance apiReportsGetNewRegisteredBiddersForWeekForAgencyGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetNewRegisteredBiddersForWeekForAgencyGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // Get new registered bidders for the week for Agency (Roles: AgencyUser, SuperAdmin, Admin)
                apiInstance.apiReportsGetNewRegisteredBiddersForWeekForAgencyGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetNewRegisteredBiddersForWeekForAgencyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiReportsGetNewRegisteredBiddersForWeekForAgencyGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetNewRegisteredBiddersForWeekForAgencyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetNewRegisteredBiddersForWeekForAgencyGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetNewRegisteredBiddersForWeekForAgencyGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agencyId = 56 # Integer |  (optional)

try: 
    # Get new registered bidders for the week for Agency (Roles: AgencyUser, SuperAdmin, Admin)
    api_instance.api_reports_get_new_registered_bidders_for_week_for_agency_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetNewRegisteredBiddersForWeekForAgencyGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetNewRegisteredBiddersForWeekForBranchGet

Get new registered bidders for the week for Branch (Roles: BranchUser)


/api/Reports/GetNewRegisteredBiddersForWeekForBranch

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetNewRegisteredBiddersForWeekForBranch?BranchId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewRegisteredBiddersForWeekForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewRegisteredBiddersForWeekForBranchGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewRegisteredBiddersForWeekForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewRegisteredBiddersForWeekForBranchGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *branchId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get new registered bidders for the week for Branch (Roles: BranchUser)
[apiInstance apiReportsGetNewRegisteredBiddersForWeekForBranchGetWith:branchId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'branchId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetNewRegisteredBiddersForWeekForBranchGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var branchId = 56;  // Integer |  (optional) 

            try
            {
                // Get new registered bidders for the week for Branch (Roles: BranchUser)
                apiInstance.apiReportsGetNewRegisteredBiddersForWeekForBranchGet(branchId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetNewRegisteredBiddersForWeekForBranchGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$branchId = 56; // Integer | 

try {
    $api_instance->apiReportsGetNewRegisteredBiddersForWeekForBranchGet($branchId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetNewRegisteredBiddersForWeekForBranchGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $branchId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetNewRegisteredBiddersForWeekForBranchGet(branchId => $branchId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetNewRegisteredBiddersForWeekForBranchGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
branchId = 56 # Integer |  (optional)

try: 
    # Get new registered bidders for the week for Branch (Roles: BranchUser)
    api_instance.api_reports_get_new_registered_bidders_for_week_for_branch_get(branchId=branchId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetNewRegisteredBiddersForWeekForBranchGet: %s\n" % e)

Parameters

Query parameters
Name Description
BranchId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetNewRegisteredBiddersForWeekForGroupGet

Get new registered bidders for the week for Group (Roles: GroupUser)


/api/Reports/GetNewRegisteredBiddersForWeekForGroup

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetNewRegisteredBiddersForWeekForGroup?GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewRegisteredBiddersForWeekForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewRegisteredBiddersForWeekForGroupGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewRegisteredBiddersForWeekForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewRegisteredBiddersForWeekForGroupGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get new registered bidders for the week for Group (Roles: GroupUser)
[apiInstance apiReportsGetNewRegisteredBiddersForWeekForGroupGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetNewRegisteredBiddersForWeekForGroupGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // Get new registered bidders for the week for Group (Roles: GroupUser)
                apiInstance.apiReportsGetNewRegisteredBiddersForWeekForGroupGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetNewRegisteredBiddersForWeekForGroupGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiReportsGetNewRegisteredBiddersForWeekForGroupGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetNewRegisteredBiddersForWeekForGroupGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetNewRegisteredBiddersForWeekForGroupGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetNewRegisteredBiddersForWeekForGroupGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
groupId = 56 # Integer |  (optional)

try: 
    # Get new registered bidders for the week for Group (Roles: GroupUser)
    api_instance.api_reports_get_new_registered_bidders_for_week_for_group_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetNewRegisteredBiddersForWeekForGroupGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetNewWeekBiddersForBranchGet

Get new bidders for the current week and count for Branch (Roles: BranchUser)


/api/Reports/GetNewWeekBiddersForBranch

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetNewWeekBiddersForBranch?BranchId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewWeekBiddersForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewWeekBiddersForBranchGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewWeekBiddersForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewWeekBiddersForBranchGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *branchId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get new bidders for the current week and count for Branch (Roles: BranchUser)
[apiInstance apiReportsGetNewWeekBiddersForBranchGetWith:branchId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'branchId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetNewWeekBiddersForBranchGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var branchId = 56;  // Integer |  (optional) 

            try
            {
                // Get new bidders for the current week and count for Branch (Roles: BranchUser)
                apiInstance.apiReportsGetNewWeekBiddersForBranchGet(branchId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetNewWeekBiddersForBranchGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$branchId = 56; // Integer | 

try {
    $api_instance->apiReportsGetNewWeekBiddersForBranchGet($branchId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetNewWeekBiddersForBranchGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $branchId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetNewWeekBiddersForBranchGet(branchId => $branchId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetNewWeekBiddersForBranchGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
branchId = 56 # Integer |  (optional)

try: 
    # Get new bidders for the current week and count for Branch (Roles: BranchUser)
    api_instance.api_reports_get_new_week_bidders_for_branch_get(branchId=branchId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetNewWeekBiddersForBranchGet: %s\n" % e)

Parameters

Query parameters
Name Description
BranchId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetNewWeekBiddersForGroupGet

Get new bidders for the current week and count for Group (Roles: GroupUser)


/api/Reports/GetNewWeekBiddersForGroup

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetNewWeekBiddersForGroup?GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewWeekBiddersForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewWeekBiddersForGroupGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetNewWeekBiddersForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetNewWeekBiddersForGroupGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get new bidders for the current week and count for Group (Roles: GroupUser)
[apiInstance apiReportsGetNewWeekBiddersForGroupGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetNewWeekBiddersForGroupGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // Get new bidders for the current week and count for Group (Roles: GroupUser)
                apiInstance.apiReportsGetNewWeekBiddersForGroupGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetNewWeekBiddersForGroupGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiReportsGetNewWeekBiddersForGroupGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetNewWeekBiddersForGroupGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetNewWeekBiddersForGroupGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetNewWeekBiddersForGroupGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
groupId = 56 # Integer |  (optional)

try: 
    # Get new bidders for the current week and count for Group (Roles: GroupUser)
    api_instance.api_reports_get_new_week_bidders_for_group_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetNewWeekBiddersForGroupGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetRegisterdBiddersForAgencyGet

SignalR --> Get new registered bidders for Agency (Roles: AgencyUser, SuperAdmin, Admin)


/api/Reports/GetRegisterdBiddersForAgency

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetRegisterdBiddersForAgency?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetRegisterdBiddersForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetRegisterdBiddersForAgencyGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetRegisterdBiddersForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetRegisterdBiddersForAgencyGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// SignalR --> Get new registered bidders for Agency (Roles: AgencyUser, SuperAdmin, Admin)
[apiInstance apiReportsGetRegisterdBiddersForAgencyGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetRegisterdBiddersForAgencyGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // SignalR --> Get new registered bidders for Agency (Roles: AgencyUser, SuperAdmin, Admin)
                apiInstance.apiReportsGetRegisterdBiddersForAgencyGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetRegisterdBiddersForAgencyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiReportsGetRegisterdBiddersForAgencyGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetRegisterdBiddersForAgencyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetRegisterdBiddersForAgencyGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetRegisterdBiddersForAgencyGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agencyId = 56 # Integer |  (optional)

try: 
    # SignalR --> Get new registered bidders for Agency (Roles: AgencyUser, SuperAdmin, Admin)
    api_instance.api_reports_get_registerd_bidders_for_agency_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetRegisterdBiddersForAgencyGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetRegisterdBiddersForBranchGet

SignalR --> Get new registered bidders for Branch (Roles: BranchUser)


/api/Reports/GetRegisterdBiddersForBranch

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetRegisterdBiddersForBranch?BranchId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetRegisterdBiddersForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetRegisterdBiddersForBranchGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetRegisterdBiddersForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetRegisterdBiddersForBranchGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *branchId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// SignalR --> Get new registered bidders for Branch (Roles: BranchUser)
[apiInstance apiReportsGetRegisterdBiddersForBranchGetWith:branchId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'branchId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetRegisterdBiddersForBranchGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var branchId = 56;  // Integer |  (optional) 

            try
            {
                // SignalR --> Get new registered bidders for Branch (Roles: BranchUser)
                apiInstance.apiReportsGetRegisterdBiddersForBranchGet(branchId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetRegisterdBiddersForBranchGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$branchId = 56; // Integer | 

try {
    $api_instance->apiReportsGetRegisterdBiddersForBranchGet($branchId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetRegisterdBiddersForBranchGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $branchId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetRegisterdBiddersForBranchGet(branchId => $branchId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetRegisterdBiddersForBranchGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
branchId = 56 # Integer |  (optional)

try: 
    # SignalR --> Get new registered bidders for Branch (Roles: BranchUser)
    api_instance.api_reports_get_registerd_bidders_for_branch_get(branchId=branchId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetRegisterdBiddersForBranchGet: %s\n" % e)

Parameters

Query parameters
Name Description
BranchId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetRegisterdBiddersForGroupGet

SignalR --> Get new registered bidders for group (Roles: GroupUser)


/api/Reports/GetRegisterdBiddersForGroup

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetRegisterdBiddersForGroup?GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetRegisterdBiddersForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetRegisterdBiddersForGroupGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetRegisterdBiddersForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetRegisterdBiddersForGroupGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// SignalR --> Get new registered bidders for group (Roles: GroupUser)
[apiInstance apiReportsGetRegisterdBiddersForGroupGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetRegisterdBiddersForGroupGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // SignalR --> Get new registered bidders for group (Roles: GroupUser)
                apiInstance.apiReportsGetRegisterdBiddersForGroupGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetRegisterdBiddersForGroupGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiReportsGetRegisterdBiddersForGroupGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetRegisterdBiddersForGroupGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetRegisterdBiddersForGroupGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetRegisterdBiddersForGroupGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
groupId = 56 # Integer |  (optional)

try: 
    # SignalR --> Get new registered bidders for group (Roles: GroupUser)
    api_instance.api_reports_get_registerd_bidders_for_group_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetRegisterdBiddersForGroupGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetSendGridEventsGet

Get Sendgrid events (Roles: SuperAdmin, Admin)


/api/Reports/GetSendGridEvents

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetSendGridEvents?AgencyId=&BranchId=&AgentId=&UserId=&PropertyId=&PageNumber=&PageSize="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        Integer branchId = 56; // Integer | 
        Integer agentId = 56; // Integer | 
        Integer userId = 56; // Integer | 
        Integer propertyId = 56; // Integer | 
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        try {
            apiInstance.apiReportsGetSendGridEventsGet(agencyId, branchId, agentId, userId, propertyId, pageNumber, pageSize);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetSendGridEventsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        Integer branchId = 56; // Integer | 
        Integer agentId = 56; // Integer | 
        Integer userId = 56; // Integer | 
        Integer propertyId = 56; // Integer | 
        Integer pageNumber = 56; // Integer | 
        Integer pageSize = 56; // Integer | 
        try {
            apiInstance.apiReportsGetSendGridEventsGet(agencyId, branchId, agentId, userId, propertyId, pageNumber, pageSize);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetSendGridEventsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)
Integer *branchId = 56; //  (optional)
Integer *agentId = 56; //  (optional)
Integer *userId = 56; //  (optional)
Integer *propertyId = 56; //  (optional)
Integer *pageNumber = 56; //  (optional)
Integer *pageSize = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get Sendgrid events (Roles: SuperAdmin, Admin)
[apiInstance apiReportsGetSendGridEventsGetWith:agencyId
    branchId:branchId
    agentId:agentId
    userId:userId
    propertyId:propertyId
    pageNumber:pageNumber
    pageSize:pageSize
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agencyId': 56, // {{Integer}} 
  'branchId': 56, // {{Integer}} 
  'agentId': 56, // {{Integer}} 
  'userId': 56, // {{Integer}} 
  'propertyId': 56, // {{Integer}} 
  'pageNumber': 56, // {{Integer}} 
  'pageSize': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetSendGridEventsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agencyId = 56;  // Integer |  (optional) 
            var branchId = 56;  // Integer |  (optional) 
            var agentId = 56;  // Integer |  (optional) 
            var userId = 56;  // Integer |  (optional) 
            var propertyId = 56;  // Integer |  (optional) 
            var pageNumber = 56;  // Integer |  (optional) 
            var pageSize = 56;  // Integer |  (optional) 

            try
            {
                // Get Sendgrid events (Roles: SuperAdmin, Admin)
                apiInstance.apiReportsGetSendGridEventsGet(agencyId, branchId, agentId, userId, propertyId, pageNumber, pageSize);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetSendGridEventsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agencyId = 56; // Integer | 
$branchId = 56; // Integer | 
$agentId = 56; // Integer | 
$userId = 56; // Integer | 
$propertyId = 56; // Integer | 
$pageNumber = 56; // Integer | 
$pageSize = 56; // Integer | 

try {
    $api_instance->apiReportsGetSendGridEventsGet($agencyId, $branchId, $agentId, $userId, $propertyId, $pageNumber, $pageSize);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetSendGridEventsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agencyId = 56; # Integer | 
my $branchId = 56; # Integer | 
my $agentId = 56; # Integer | 
my $userId = 56; # Integer | 
my $propertyId = 56; # Integer | 
my $pageNumber = 56; # Integer | 
my $pageSize = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetSendGridEventsGet(agencyId => $agencyId, branchId => $branchId, agentId => $agentId, userId => $userId, propertyId => $propertyId, pageNumber => $pageNumber, pageSize => $pageSize);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetSendGridEventsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agencyId = 56 # Integer |  (optional)
branchId = 56 # Integer |  (optional)
agentId = 56 # Integer |  (optional)
userId = 56 # Integer |  (optional)
propertyId = 56 # Integer |  (optional)
pageNumber = 56 # Integer |  (optional)
pageSize = 56 # Integer |  (optional)

try: 
    # Get Sendgrid events (Roles: SuperAdmin, Admin)
    api_instance.api_reports_get_send_grid_events_get(agencyId=agencyId, branchId=branchId, agentId=agentId, userId=userId, propertyId=propertyId, pageNumber=pageNumber, pageSize=pageSize)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetSendGridEventsGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)
BranchId
Integer (int32)
AgentId
Integer (int32)
UserId
Integer (int32)
PropertyId
Integer (int32)
PageNumber
Integer (int32)
PageSize
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetTopSalesForBranchGet

Gets the top sales performances for a branch (Roles: BranchUser)


/api/Reports/GetTopSalesForBranch

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetTopSalesForBranch?BranchId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetTopSalesForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetTopSalesForBranchGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetTopSalesForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetTopSalesForBranchGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *branchId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Gets the top sales performances for a branch (Roles: BranchUser)
[apiInstance apiReportsGetTopSalesForBranchGetWith:branchId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'branchId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetTopSalesForBranchGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var branchId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the top sales performances for a branch (Roles: BranchUser)
                apiInstance.apiReportsGetTopSalesForBranchGet(branchId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetTopSalesForBranchGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$branchId = 56; // Integer | 

try {
    $api_instance->apiReportsGetTopSalesForBranchGet($branchId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetTopSalesForBranchGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $branchId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetTopSalesForBranchGet(branchId => $branchId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetTopSalesForBranchGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
branchId = 56 # Integer |  (optional)

try: 
    # Gets the top sales performances for a branch (Roles: BranchUser)
    api_instance.api_reports_get_top_sales_for_branch_get(branchId=branchId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetTopSalesForBranchGet: %s\n" % e)

Parameters

Query parameters
Name Description
BranchId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetTopSalesForGroupGet

Gets the top sales performances for a group (Roles: GroupUser)


/api/Reports/GetTopSalesForGroup

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetTopSalesForGroup?GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetTopSalesForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetTopSalesForGroupGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetTopSalesForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetTopSalesForGroupGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Gets the top sales performances for a group (Roles: GroupUser)
[apiInstance apiReportsGetTopSalesForGroupGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetTopSalesForGroupGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the top sales performances for a group (Roles: GroupUser)
                apiInstance.apiReportsGetTopSalesForGroupGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetTopSalesForGroupGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiReportsGetTopSalesForGroupGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetTopSalesForGroupGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetTopSalesForGroupGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetTopSalesForGroupGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
groupId = 56 # Integer |  (optional)

try: 
    # Gets the top sales performances for a group (Roles: GroupUser)
    api_instance.api_reports_get_top_sales_for_group_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetTopSalesForGroupGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetTotalNoOfBidsForAgentGet

Gets the total number of bids by agent id (Roles: Agent)


/api/Reports/GetTotalNoOfBidsForAgent

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetTotalNoOfBidsForAgent?AgentId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetTotalNoOfBidsForAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetTotalNoOfBidsForAgentGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetTotalNoOfBidsForAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetTotalNoOfBidsForAgentGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agentId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Gets the total number of bids by agent id  (Roles: Agent)
[apiInstance apiReportsGetTotalNoOfBidsForAgentGetWith:agentId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agentId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetTotalNoOfBidsForAgentGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agentId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the total number of bids by agent id  (Roles: Agent)
                apiInstance.apiReportsGetTotalNoOfBidsForAgentGet(agentId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetTotalNoOfBidsForAgentGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agentId = 56; // Integer | 

try {
    $api_instance->apiReportsGetTotalNoOfBidsForAgentGet($agentId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetTotalNoOfBidsForAgentGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agentId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetTotalNoOfBidsForAgentGet(agentId => $agentId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetTotalNoOfBidsForAgentGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agentId = 56 # Integer |  (optional)

try: 
    # Gets the total number of bids by agent id  (Roles: Agent)
    api_instance.api_reports_get_total_no_of_bids_for_agent_get(agentId=agentId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetTotalNoOfBidsForAgentGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgentId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetTotalNoOfBidsPerWeekForAgencyGet

SignalR --> Get total no of bids for week for Agency (Roles: AgencyUser, SuperAdmin, Admin)


/api/Reports/GetTotalNoOfBidsPerWeekForAgency

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetTotalNoOfBidsPerWeekForAgency?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetTotalNoOfBidsPerWeekForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetTotalNoOfBidsPerWeekForAgencyGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetTotalNoOfBidsPerWeekForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetTotalNoOfBidsPerWeekForAgencyGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// SignalR --> Get total no of bids for week for Agency (Roles: AgencyUser, SuperAdmin, Admin)
[apiInstance apiReportsGetTotalNoOfBidsPerWeekForAgencyGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetTotalNoOfBidsPerWeekForAgencyGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // SignalR --> Get total no of bids for week for Agency (Roles: AgencyUser, SuperAdmin, Admin)
                apiInstance.apiReportsGetTotalNoOfBidsPerWeekForAgencyGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetTotalNoOfBidsPerWeekForAgencyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiReportsGetTotalNoOfBidsPerWeekForAgencyGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetTotalNoOfBidsPerWeekForAgencyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetTotalNoOfBidsPerWeekForAgencyGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetTotalNoOfBidsPerWeekForAgencyGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agencyId = 56 # Integer |  (optional)

try: 
    # SignalR --> Get total no of bids for week for Agency (Roles: AgencyUser, SuperAdmin, Admin)
    api_instance.api_reports_get_total_no_of_bids_per_week_for_agency_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetTotalNoOfBidsPerWeekForAgencyGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetTotalNoOfBidsPerWeekForBranchGet

SignalR --> Get total no of bids for week for Branch (Roles: BranchUser)


/api/Reports/GetTotalNoOfBidsPerWeekForBranch

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetTotalNoOfBidsPerWeekForBranch?BranchId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetTotalNoOfBidsPerWeekForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetTotalNoOfBidsPerWeekForBranchGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetTotalNoOfBidsPerWeekForBranchGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetTotalNoOfBidsPerWeekForBranchGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *branchId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// SignalR --> Get total no of bids for week for Branch (Roles: BranchUser)
[apiInstance apiReportsGetTotalNoOfBidsPerWeekForBranchGetWith:branchId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'branchId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetTotalNoOfBidsPerWeekForBranchGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var branchId = 56;  // Integer |  (optional) 

            try
            {
                // SignalR --> Get total no of bids for week for Branch (Roles: BranchUser)
                apiInstance.apiReportsGetTotalNoOfBidsPerWeekForBranchGet(branchId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetTotalNoOfBidsPerWeekForBranchGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$branchId = 56; // Integer | 

try {
    $api_instance->apiReportsGetTotalNoOfBidsPerWeekForBranchGet($branchId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetTotalNoOfBidsPerWeekForBranchGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $branchId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetTotalNoOfBidsPerWeekForBranchGet(branchId => $branchId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetTotalNoOfBidsPerWeekForBranchGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
branchId = 56 # Integer |  (optional)

try: 
    # SignalR --> Get total no of bids for week for Branch (Roles: BranchUser)
    api_instance.api_reports_get_total_no_of_bids_per_week_for_branch_get(branchId=branchId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetTotalNoOfBidsPerWeekForBranchGet: %s\n" % e)

Parameters

Query parameters
Name Description
BranchId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetTotalNoOfBidsPerWeekForGroupGet

SignalR --> Get total no of bids for week for group (Roles: GroupUser)


/api/Reports/GetTotalNoOfBidsPerWeekForGroup

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetTotalNoOfBidsPerWeekForGroup?GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetTotalNoOfBidsPerWeekForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetTotalNoOfBidsPerWeekForGroupGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetTotalNoOfBidsPerWeekForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetTotalNoOfBidsPerWeekForGroupGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// SignalR --> Get total no of bids for week for group (Roles: GroupUser)
[apiInstance apiReportsGetTotalNoOfBidsPerWeekForGroupGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetTotalNoOfBidsPerWeekForGroupGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // SignalR --> Get total no of bids for week for group (Roles: GroupUser)
                apiInstance.apiReportsGetTotalNoOfBidsPerWeekForGroupGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetTotalNoOfBidsPerWeekForGroupGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiReportsGetTotalNoOfBidsPerWeekForGroupGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetTotalNoOfBidsPerWeekForGroupGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetTotalNoOfBidsPerWeekForGroupGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetTotalNoOfBidsPerWeekForGroupGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
groupId = 56 # Integer |  (optional)

try: 
    # SignalR --> Get total no of bids for week for group (Roles: GroupUser)
    api_instance.api_reports_get_total_no_of_bids_per_week_for_group_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetTotalNoOfBidsPerWeekForGroupGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiReportsGetWatchListGet

Get a list of watchlist for agents (Roles: Agent)


/api/Reports/GetWatchList

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/GetWatchList?AgentId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetWatchListGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetWatchListGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsGetWatchListGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsGetWatchListGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agentId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get a list of watchlist for agents (Roles: Agent)
[apiInstance apiReportsGetWatchListGetWith:agentId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agentId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsGetWatchListGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agentId = 56;  // Integer |  (optional) 

            try
            {
                // Get a list of watchlist for agents (Roles: Agent)
                apiInstance.apiReportsGetWatchListGet(agentId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsGetWatchListGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agentId = 56; // Integer | 

try {
    $api_instance->apiReportsGetWatchListGet($agentId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsGetWatchListGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agentId = 56; # Integer | 

eval { 
    $api_instance->apiReportsGetWatchListGet(agentId => $agentId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsGetWatchListGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agentId = 56 # Integer |  (optional)

try: 
    # Get a list of watchlist for agents (Roles: Agent)
    api_instance.api_reports_get_watch_list_get(agentId=agentId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsGetWatchListGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgentId
Integer (int32)

Responses

Status: 200 - Success


apiReportsNewRegisteredBiddersAgentGet

Gets the total number of registered bidders by agent id (Roles: Agent)


/api/Reports/NewRegisteredBiddersAgent

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/NewRegisteredBiddersAgent?AgentId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsNewRegisteredBiddersAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsNewRegisteredBiddersAgentGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsNewRegisteredBiddersAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsNewRegisteredBiddersAgentGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agentId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Gets the total number of registered bidders by agent id (Roles: Agent)
[apiInstance apiReportsNewRegisteredBiddersAgentGetWith:agentId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agentId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsNewRegisteredBiddersAgentGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agentId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the total number of registered bidders by agent id (Roles: Agent)
                apiInstance.apiReportsNewRegisteredBiddersAgentGet(agentId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsNewRegisteredBiddersAgentGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agentId = 56; // Integer | 

try {
    $api_instance->apiReportsNewRegisteredBiddersAgentGet($agentId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsNewRegisteredBiddersAgentGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agentId = 56; # Integer | 

eval { 
    $api_instance->apiReportsNewRegisteredBiddersAgentGet(agentId => $agentId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsNewRegisteredBiddersAgentGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agentId = 56 # Integer |  (optional)

try: 
    # Gets the total number of registered bidders by agent id (Roles: Agent)
    api_instance.api_reports_new_registered_bidders_agent_get(agentId=agentId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsNewRegisteredBiddersAgentGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgentId
Integer (int32)

Responses

Status: 200 - Success


apiReportsSalesPerformanceForTheWeekForAgencyGet

Get top performing sales for an agency (Roles: AgencyUser, SuperAdmin, Admin)


/api/Reports/SalesPerformanceForTheWeekForAgency

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/SalesPerformanceForTheWeekForAgency?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsSalesPerformanceForTheWeekForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsSalesPerformanceForTheWeekForAgencyGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiReportsSalesPerformanceForTheWeekForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsSalesPerformanceForTheWeekForAgencyGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get top performing sales for an agency (Roles: AgencyUser, SuperAdmin, Admin)
[apiInstance apiReportsSalesPerformanceForTheWeekForAgencyGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsSalesPerformanceForTheWeekForAgencyGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // Get top performing sales for an agency (Roles: AgencyUser, SuperAdmin, Admin)
                apiInstance.apiReportsSalesPerformanceForTheWeekForAgencyGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsSalesPerformanceForTheWeekForAgencyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiReportsSalesPerformanceForTheWeekForAgencyGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsSalesPerformanceForTheWeekForAgencyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiReportsSalesPerformanceForTheWeekForAgencyGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsSalesPerformanceForTheWeekForAgencyGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agencyId = 56 # Integer |  (optional)

try: 
    # Get top performing sales for an agency (Roles: AgencyUser, SuperAdmin, Admin)
    api_instance.api_reports_sales_performance_for_the_week_for_agency_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsSalesPerformanceForTheWeekForAgencyGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiReportsTopSalesAgentGet

Get top performing sales for an agent (Roles: Agent)


/api/Reports/TopSalesAgent

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/TopSalesAgent?AgentId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsTopSalesAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsTopSalesAgentGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiReportsTopSalesAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsTopSalesAgentGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agentId = 56; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get top performing sales for an agent (Roles: Agent)
[apiInstance apiReportsTopSalesAgentGetWith:agentId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agentId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsTopSalesAgentGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agentId = 56;  // Integer |  (optional) 

            try
            {
                // Get top performing sales for an agent (Roles: Agent)
                apiInstance.apiReportsTopSalesAgentGet(agentId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsTopSalesAgentGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agentId = 56; // Integer | 

try {
    $api_instance->apiReportsTopSalesAgentGet($agentId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsTopSalesAgentGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agentId = 56; # Integer | 

eval { 
    $api_instance->apiReportsTopSalesAgentGet(agentId => $agentId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsTopSalesAgentGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agentId = 56 # Integer |  (optional)

try: 
    # Get top performing sales for an agent (Roles: Agent)
    api_instance.api_reports_top_sales_agent_get(agentId=agentId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsTopSalesAgentGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgentId
Integer (int32)

Responses

Status: 200 - Success


apiReportsWatchlistFilterGet

Get a List of watchlist for Search filter (Roles: All)


/api/Reports/WatchlistFilter

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Reports/WatchlistFilter?AgencyId=&BranchId=&AgentId=&Role=&Status=&FromDate=&ToDate=&NoOfBeds=&PropertyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReportsApi;

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

public class ReportsApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        ReportsApi apiInstance = new ReportsApi();
        String agencyId = agencyId_example; // String | 
        String branchId = branchId_example; // String | 
        String agentId = agentId_example; // String | 
        String role = role_example; // String | 
        String status = status_example; // String | 
        String fromDate = fromDate_example; // String | 
        String toDate = toDate_example; // String | 
        String noOfBeds = noOfBeds_example; // String | 
        String propertyId = propertyId_example; // String | 
        try {
            apiInstance.apiReportsWatchlistFilterGet(agencyId, branchId, agentId, role, status, fromDate, toDate, noOfBeds, propertyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsWatchlistFilterGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ReportsApi;

public class ReportsApiExample {

    public static void main(String[] args) {
        ReportsApi apiInstance = new ReportsApi();
        String agencyId = agencyId_example; // String | 
        String branchId = branchId_example; // String | 
        String agentId = agentId_example; // String | 
        String role = role_example; // String | 
        String status = status_example; // String | 
        String fromDate = fromDate_example; // String | 
        String toDate = toDate_example; // String | 
        String noOfBeds = noOfBeds_example; // String | 
        String propertyId = propertyId_example; // String | 
        try {
            apiInstance.apiReportsWatchlistFilterGet(agencyId, branchId, agentId, role, status, fromDate, toDate, noOfBeds, propertyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportsApi#apiReportsWatchlistFilterGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *agencyId = agencyId_example; //  (optional)
String *branchId = branchId_example; //  (optional)
String *agentId = agentId_example; //  (optional)
String *role = role_example; //  (optional)
String *status = status_example; //  (optional)
String *fromDate = fromDate_example; //  (optional)
String *toDate = toDate_example; //  (optional)
String *noOfBeds = noOfBeds_example; //  (optional)
String *propertyId = propertyId_example; //  (optional)

ReportsApi *apiInstance = [[ReportsApi alloc] init];

// Get a List of watchlist for Search filter (Roles: All)
[apiInstance apiReportsWatchlistFilterGetWith:agencyId
    branchId:branchId
    agentId:agentId
    role:role
    status:status
    fromDate:fromDate
    toDate:toDate
    noOfBeds:noOfBeds
    propertyId:propertyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.ReportsApi()
var opts = { 
  'agencyId': agencyId_example, // {{String}} 
  'branchId': branchId_example, // {{String}} 
  'agentId': agentId_example, // {{String}} 
  'role': role_example, // {{String}} 
  'status': status_example, // {{String}} 
  'fromDate': fromDate_example, // {{String}} 
  'toDate': toDate_example, // {{String}} 
  'noOfBeds': noOfBeds_example, // {{String}} 
  'propertyId': propertyId_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiReportsWatchlistFilterGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new ReportsApi();
            var agencyId = agencyId_example;  // String |  (optional) 
            var branchId = branchId_example;  // String |  (optional) 
            var agentId = agentId_example;  // String |  (optional) 
            var role = role_example;  // String |  (optional) 
            var status = status_example;  // String |  (optional) 
            var fromDate = fromDate_example;  // String |  (optional) 
            var toDate = toDate_example;  // String |  (optional) 
            var noOfBeds = noOfBeds_example;  // String |  (optional) 
            var propertyId = propertyId_example;  // String |  (optional) 

            try
            {
                // Get a List of watchlist for Search filter (Roles: All)
                apiInstance.apiReportsWatchlistFilterGet(agencyId, branchId, agentId, role, status, fromDate, toDate, noOfBeds, propertyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ReportsApi.apiReportsWatchlistFilterGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiReportsApi();
$agencyId = agencyId_example; // String | 
$branchId = branchId_example; // String | 
$agentId = agentId_example; // String | 
$role = role_example; // String | 
$status = status_example; // String | 
$fromDate = fromDate_example; // String | 
$toDate = toDate_example; // String | 
$noOfBeds = noOfBeds_example; // String | 
$propertyId = propertyId_example; // String | 

try {
    $api_instance->apiReportsWatchlistFilterGet($agencyId, $branchId, $agentId, $role, $status, $fromDate, $toDate, $noOfBeds, $propertyId);
} catch (Exception $e) {
    echo 'Exception when calling ReportsApi->apiReportsWatchlistFilterGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ReportsApi;


my $api_instance = WWW::SwaggerClient::ReportsApi->new();
my $agencyId = agencyId_example; # String | 
my $branchId = branchId_example; # String | 
my $agentId = agentId_example; # String | 
my $role = role_example; # String | 
my $status = status_example; # String | 
my $fromDate = fromDate_example; # String | 
my $toDate = toDate_example; # String | 
my $noOfBeds = noOfBeds_example; # String | 
my $propertyId = propertyId_example; # String | 

eval { 
    $api_instance->apiReportsWatchlistFilterGet(agencyId => $agencyId, branchId => $branchId, agentId => $agentId, role => $role, status => $status, fromDate => $fromDate, toDate => $toDate, noOfBeds => $noOfBeds, propertyId => $propertyId);
};
if ($@) {
    warn "Exception when calling ReportsApi->apiReportsWatchlistFilterGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.ReportsApi()
agencyId = agencyId_example # String |  (optional)
branchId = branchId_example # String |  (optional)
agentId = agentId_example # String |  (optional)
role = role_example # String |  (optional)
status = status_example # String |  (optional)
fromDate = fromDate_example # String |  (optional)
toDate = toDate_example # String |  (optional)
noOfBeds = noOfBeds_example # String |  (optional)
propertyId = propertyId_example # String |  (optional)

try: 
    # Get a List of watchlist for Search filter (Roles: All)
    api_instance.api_reports_watchlist_filter_get(agencyId=agencyId, branchId=branchId, agentId=agentId, role=role, status=status, fromDate=fromDate, toDate=toDate, noOfBeds=noOfBeds, propertyId=propertyId)
except ApiException as e:
    print("Exception when calling ReportsApi->apiReportsWatchlistFilterGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
String
BranchId
String
AgentId
String
Role
String
Status
String
FromDate
String
ToDate
String
NoOfBeds
String
PropertyId
String

Responses

Status: 200 - Success


Sale

apiSaleAcceptBidOnSalePost

Accept bid of the sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/AcceptBidOnSale

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Sale/AcceptBidOnSale"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.Bid body = ; // BeagelManagers.Models.Bid | 
        try {
            apiInstance.apiSaleAcceptBidOnSalePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAcceptBidOnSalePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.Bid body = ; // BeagelManagers.Models.Bid | 
        try {
            apiInstance.apiSaleAcceptBidOnSalePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAcceptBidOnSalePost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Bid *body = ; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Accept bid of the sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleAcceptBidOnSalePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Bid}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleAcceptBidOnSalePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var body = new BeagelManagers.Models.Bid(); // BeagelManagers.Models.Bid |  (optional) 

            try
            {
                // Accept bid of the sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleAcceptBidOnSalePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleAcceptBidOnSalePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$body = ; // BeagelManagers.Models.Bid | 

try {
    $api_instance->apiSaleAcceptBidOnSalePost($body);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleAcceptBidOnSalePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Bid->new(); # BeagelManagers.Models.Bid | 

eval { 
    $api_instance->apiSaleAcceptBidOnSalePost(body => $body);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleAcceptBidOnSalePost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
body =  # BeagelManagers.Models.Bid |  (optional)

try: 
    # Accept bid of the sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_accept_bid_on_sale_post(body=body)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleAcceptBidOnSalePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiSaleAcceptOrRejectEscrowDeductionsPost

Accepts or rejects escrow deductions for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/AcceptOrRejectEscrowDeductions

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Sale/AcceptOrRejectEscrowDeductions"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.EscrowDeductions body = ; // BeagelManagers.Models.EscrowDeductions | 
        try {
            apiInstance.apiSaleAcceptOrRejectEscrowDeductionsPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAcceptOrRejectEscrowDeductionsPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.EscrowDeductions body = ; // BeagelManagers.Models.EscrowDeductions | 
        try {
            apiInstance.apiSaleAcceptOrRejectEscrowDeductionsPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAcceptOrRejectEscrowDeductionsPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.EscrowDeductions *body = ; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Accepts or rejects escrow deductions for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleAcceptOrRejectEscrowDeductionsPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.EscrowDeductions}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleAcceptOrRejectEscrowDeductionsPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var body = new BeagelManagers.Models.EscrowDeductions(); // BeagelManagers.Models.EscrowDeductions |  (optional) 

            try
            {
                // Accepts or rejects escrow deductions for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleAcceptOrRejectEscrowDeductionsPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleAcceptOrRejectEscrowDeductionsPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$body = ; // BeagelManagers.Models.EscrowDeductions | 

try {
    $api_instance->apiSaleAcceptOrRejectEscrowDeductionsPost($body);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleAcceptOrRejectEscrowDeductionsPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.EscrowDeductions->new(); # BeagelManagers.Models.EscrowDeductions | 

eval { 
    $api_instance->apiSaleAcceptOrRejectEscrowDeductionsPost(body => $body);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleAcceptOrRejectEscrowDeductionsPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
body =  # BeagelManagers.Models.EscrowDeductions |  (optional)

try: 
    # Accepts or rejects escrow deductions for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_accept_or_reject_escrow_deductions_post(body=body)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleAcceptOrRejectEscrowDeductionsPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiSaleAddLegalDocumentsPost

Adds documents to the legal packs (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/AddLegalDocuments

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: multipart/form-data"\
"//api/Sale/AddLegalDocuments"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer propertyId = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        Integer salePropertyId = 56; // Integer | 
        Boolean mainPicture = true; // Boolean | 
        Integer id = 56; // Integer | 
        String path = path_example; // String | 
        try {
            apiInstance.apiSaleAddLegalDocumentsPost(file, propertyId, saleId, salePropertyId, mainPicture, id, path);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddLegalDocumentsPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer propertyId = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        Integer salePropertyId = 56; // Integer | 
        Boolean mainPicture = true; // Boolean | 
        Integer id = 56; // Integer | 
        String path = path_example; // String | 
        try {
            apiInstance.apiSaleAddLegalDocumentsPost(file, propertyId, saleId, salePropertyId, mainPicture, id, path);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddLegalDocumentsPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
array[byte[]] *file = ; //  (optional)
Integer *propertyId = 56; //  (optional)
Integer *saleId = 56; //  (optional)
Integer *salePropertyId = 56; //  (optional)
Boolean *mainPicture = true; //  (optional)
Integer *id = 56; //  (optional)
String *path = path_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Adds documents to the legal packs (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleAddLegalDocumentsPostWith:file
    propertyId:propertyId
    saleId:saleId
    salePropertyId:salePropertyId
    mainPicture:mainPicture
    id:id
    path:path
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'file':  // {{array[byte[]]}} 
  'propertyId': 56 // {{Integer}} 
  'saleId': 56 // {{Integer}} 
  'salePropertyId': 56 // {{Integer}} 
  'mainPicture': true // {{Boolean}} 
  'id': 56 // {{Integer}} 
  'path': path_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleAddLegalDocumentsPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var file = new array[byte[]](); // array[byte[]] |  (optional) 
            var propertyId = 56;  // Integer |  (optional) 
            var saleId = 56;  // Integer |  (optional) 
            var salePropertyId = 56;  // Integer |  (optional) 
            var mainPicture = true;  // Boolean |  (optional) 
            var id = 56;  // Integer |  (optional) 
            var path = path_example;  // String |  (optional) 

            try
            {
                // Adds documents to the legal packs (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleAddLegalDocumentsPost(file, propertyId, saleId, salePropertyId, mainPicture, id, path);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleAddLegalDocumentsPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$file = ; // array[byte[]] | 
$propertyId = 56; // Integer | 
$saleId = 56; // Integer | 
$salePropertyId = 56; // Integer | 
$mainPicture = true; // Boolean | 
$id = 56; // Integer | 
$path = path_example; // String | 

try {
    $api_instance->apiSaleAddLegalDocumentsPost($file, $propertyId, $saleId, $salePropertyId, $mainPicture, $id, $path);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleAddLegalDocumentsPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $file = []; # array[byte[]] | 
my $propertyId = 56; # Integer | 
my $saleId = 56; # Integer | 
my $salePropertyId = 56; # Integer | 
my $mainPicture = true; # Boolean | 
my $id = 56; # Integer | 
my $path = path_example; # String | 

eval { 
    $api_instance->apiSaleAddLegalDocumentsPost(file => $file, propertyId => $propertyId, saleId => $saleId, salePropertyId => $salePropertyId, mainPicture => $mainPicture, id => $id, path => $path);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleAddLegalDocumentsPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
file =  # array[byte[]] |  (optional)
propertyId = 56 # Integer |  (optional)
saleId = 56 # Integer |  (optional)
salePropertyId = 56 # Integer |  (optional)
mainPicture = true # Boolean |  (optional)
id = 56 # Integer |  (optional)
path = path_example # String |  (optional)

try: 
    # Adds documents to the legal packs (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_add_legal_documents_post(file=file, propertyId=propertyId, saleId=saleId, salePropertyId=salePropertyId, mainPicture=mainPicture, id=id, path=path)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleAddLegalDocumentsPost: %s\n" % e)

Parameters

Form parameters
Name Description
File
array[byte[]] (binary)
PropertyId
Integer (int32)
SaleId
Integer (int32)
SalePropertyId
Integer (int32)
MainPicture
Boolean
Id
Integer (int32)
Path
String

Responses

Status: 200 - Success


apiSaleAddPrimarySaleImagePost

Adds a primary sale image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/AddPrimarySaleImage

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: multipart/form-data"\
"//api/Sale/AddPrimarySaleImage"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer propertyId = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        Integer salePropertyId = 56; // Integer | 
        Boolean mainPicture = true; // Boolean | 
        Integer id = 56; // Integer | 
        String path = path_example; // String | 
        try {
            apiInstance.apiSaleAddPrimarySaleImagePost(file, propertyId, saleId, salePropertyId, mainPicture, id, path);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddPrimarySaleImagePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer propertyId = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        Integer salePropertyId = 56; // Integer | 
        Boolean mainPicture = true; // Boolean | 
        Integer id = 56; // Integer | 
        String path = path_example; // String | 
        try {
            apiInstance.apiSaleAddPrimarySaleImagePost(file, propertyId, saleId, salePropertyId, mainPicture, id, path);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddPrimarySaleImagePost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
array[byte[]] *file = ; //  (optional)
Integer *propertyId = 56; //  (optional)
Integer *saleId = 56; //  (optional)
Integer *salePropertyId = 56; //  (optional)
Boolean *mainPicture = true; //  (optional)
Integer *id = 56; //  (optional)
String *path = path_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Adds a primary sale image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleAddPrimarySaleImagePostWith:file
    propertyId:propertyId
    saleId:saleId
    salePropertyId:salePropertyId
    mainPicture:mainPicture
    id:id
    path:path
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'file':  // {{array[byte[]]}} 
  'propertyId': 56 // {{Integer}} 
  'saleId': 56 // {{Integer}} 
  'salePropertyId': 56 // {{Integer}} 
  'mainPicture': true // {{Boolean}} 
  'id': 56 // {{Integer}} 
  'path': path_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleAddPrimarySaleImagePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var file = new array[byte[]](); // array[byte[]] |  (optional) 
            var propertyId = 56;  // Integer |  (optional) 
            var saleId = 56;  // Integer |  (optional) 
            var salePropertyId = 56;  // Integer |  (optional) 
            var mainPicture = true;  // Boolean |  (optional) 
            var id = 56;  // Integer |  (optional) 
            var path = path_example;  // String |  (optional) 

            try
            {
                // Adds a primary sale image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleAddPrimarySaleImagePost(file, propertyId, saleId, salePropertyId, mainPicture, id, path);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleAddPrimarySaleImagePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$file = ; // array[byte[]] | 
$propertyId = 56; // Integer | 
$saleId = 56; // Integer | 
$salePropertyId = 56; // Integer | 
$mainPicture = true; // Boolean | 
$id = 56; // Integer | 
$path = path_example; // String | 

try {
    $api_instance->apiSaleAddPrimarySaleImagePost($file, $propertyId, $saleId, $salePropertyId, $mainPicture, $id, $path);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleAddPrimarySaleImagePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $file = []; # array[byte[]] | 
my $propertyId = 56; # Integer | 
my $saleId = 56; # Integer | 
my $salePropertyId = 56; # Integer | 
my $mainPicture = true; # Boolean | 
my $id = 56; # Integer | 
my $path = path_example; # String | 

eval { 
    $api_instance->apiSaleAddPrimarySaleImagePost(file => $file, propertyId => $propertyId, saleId => $saleId, salePropertyId => $salePropertyId, mainPicture => $mainPicture, id => $id, path => $path);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleAddPrimarySaleImagePost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
file =  # array[byte[]] |  (optional)
propertyId = 56 # Integer |  (optional)
saleId = 56 # Integer |  (optional)
salePropertyId = 56 # Integer |  (optional)
mainPicture = true # Boolean |  (optional)
id = 56 # Integer |  (optional)
path = path_example # String |  (optional)

try: 
    # Adds a primary sale image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_add_primary_sale_image_post(file=file, propertyId=propertyId, saleId=saleId, salePropertyId=salePropertyId, mainPicture=mainPicture, id=id, path=path)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleAddPrimarySaleImagePost: %s\n" % e)

Parameters

Form parameters
Name Description
File
array[byte[]] (binary)
PropertyId
Integer (int32)
SaleId
Integer (int32)
SalePropertyId
Integer (int32)
MainPicture
Boolean
Id
Integer (int32)
Path
String

Responses

Status: 200 - Success


apiSaleAddSecondarySaleImagePost

Adds a secondary sale image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/AddSecondarySaleImage

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: multipart/form-data"\
"//api/Sale/AddSecondarySaleImage"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer propertyId = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        Integer salePropertyId = 56; // Integer | 
        Boolean mainPicture = true; // Boolean | 
        Integer id = 56; // Integer | 
        String path = path_example; // String | 
        try {
            apiInstance.apiSaleAddSecondarySaleImagePost(file, propertyId, saleId, salePropertyId, mainPicture, id, path);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddSecondarySaleImagePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer propertyId = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        Integer salePropertyId = 56; // Integer | 
        Boolean mainPicture = true; // Boolean | 
        Integer id = 56; // Integer | 
        String path = path_example; // String | 
        try {
            apiInstance.apiSaleAddSecondarySaleImagePost(file, propertyId, saleId, salePropertyId, mainPicture, id, path);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddSecondarySaleImagePost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
array[byte[]] *file = ; //  (optional)
Integer *propertyId = 56; //  (optional)
Integer *saleId = 56; //  (optional)
Integer *salePropertyId = 56; //  (optional)
Boolean *mainPicture = true; //  (optional)
Integer *id = 56; //  (optional)
String *path = path_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Adds a secondary sale image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleAddSecondarySaleImagePostWith:file
    propertyId:propertyId
    saleId:saleId
    salePropertyId:salePropertyId
    mainPicture:mainPicture
    id:id
    path:path
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'file':  // {{array[byte[]]}} 
  'propertyId': 56 // {{Integer}} 
  'saleId': 56 // {{Integer}} 
  'salePropertyId': 56 // {{Integer}} 
  'mainPicture': true // {{Boolean}} 
  'id': 56 // {{Integer}} 
  'path': path_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleAddSecondarySaleImagePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var file = new array[byte[]](); // array[byte[]] |  (optional) 
            var propertyId = 56;  // Integer |  (optional) 
            var saleId = 56;  // Integer |  (optional) 
            var salePropertyId = 56;  // Integer |  (optional) 
            var mainPicture = true;  // Boolean |  (optional) 
            var id = 56;  // Integer |  (optional) 
            var path = path_example;  // String |  (optional) 

            try
            {
                // Adds a secondary sale image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleAddSecondarySaleImagePost(file, propertyId, saleId, salePropertyId, mainPicture, id, path);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleAddSecondarySaleImagePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$file = ; // array[byte[]] | 
$propertyId = 56; // Integer | 
$saleId = 56; // Integer | 
$salePropertyId = 56; // Integer | 
$mainPicture = true; // Boolean | 
$id = 56; // Integer | 
$path = path_example; // String | 

try {
    $api_instance->apiSaleAddSecondarySaleImagePost($file, $propertyId, $saleId, $salePropertyId, $mainPicture, $id, $path);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleAddSecondarySaleImagePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $file = []; # array[byte[]] | 
my $propertyId = 56; # Integer | 
my $saleId = 56; # Integer | 
my $salePropertyId = 56; # Integer | 
my $mainPicture = true; # Boolean | 
my $id = 56; # Integer | 
my $path = path_example; # String | 

eval { 
    $api_instance->apiSaleAddSecondarySaleImagePost(file => $file, propertyId => $propertyId, saleId => $saleId, salePropertyId => $salePropertyId, mainPicture => $mainPicture, id => $id, path => $path);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleAddSecondarySaleImagePost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
file =  # array[byte[]] |  (optional)
propertyId = 56 # Integer |  (optional)
saleId = 56 # Integer |  (optional)
salePropertyId = 56 # Integer |  (optional)
mainPicture = true # Boolean |  (optional)
id = 56 # Integer |  (optional)
path = path_example # String |  (optional)

try: 
    # Adds a secondary sale image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_add_secondary_sale_image_post(file=file, propertyId=propertyId, saleId=saleId, salePropertyId=salePropertyId, mainPicture=mainPicture, id=id, path=path)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleAddSecondarySaleImagePost: %s\n" % e)

Parameters

Form parameters
Name Description
File
array[byte[]] (binary)
PropertyId
Integer (int32)
SaleId
Integer (int32)
SalePropertyId
Integer (int32)
MainPicture
Boolean
Id
Integer (int32)
Path
String

Responses

Status: 200 - Success


apiSaleAddUpdateEscrowDeductionsPost

Add Updates escrow deductions for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/AddUpdateEscrowDeductions

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Sale/AddUpdateEscrowDeductions"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.EscrowDeductions body = ; // BeagelManagers.Models.EscrowDeductions | 
        try {
            apiInstance.apiSaleAddUpdateEscrowDeductionsPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdateEscrowDeductionsPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.EscrowDeductions body = ; // BeagelManagers.Models.EscrowDeductions | 
        try {
            apiInstance.apiSaleAddUpdateEscrowDeductionsPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdateEscrowDeductionsPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.EscrowDeductions *body = ; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Add Updates escrow deductions for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleAddUpdateEscrowDeductionsPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.EscrowDeductions}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleAddUpdateEscrowDeductionsPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var body = new BeagelManagers.Models.EscrowDeductions(); // BeagelManagers.Models.EscrowDeductions |  (optional) 

            try
            {
                // Add Updates escrow deductions for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleAddUpdateEscrowDeductionsPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleAddUpdateEscrowDeductionsPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$body = ; // BeagelManagers.Models.EscrowDeductions | 

try {
    $api_instance->apiSaleAddUpdateEscrowDeductionsPost($body);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleAddUpdateEscrowDeductionsPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.EscrowDeductions->new(); # BeagelManagers.Models.EscrowDeductions | 

eval { 
    $api_instance->apiSaleAddUpdateEscrowDeductionsPost(body => $body);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleAddUpdateEscrowDeductionsPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
body =  # BeagelManagers.Models.EscrowDeductions |  (optional)

try: 
    # Add Updates escrow deductions for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_add_update_escrow_deductions_post(body=body)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleAddUpdateEscrowDeductionsPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiSaleAddUpdateEscrowDocumentsPost

Add Updates escrow documents for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/AddUpdateEscrowDocuments

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: multipart/form-data"\
"//api/Sale/AddUpdateEscrowDocuments"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer id = 56; // Integer | 
        Integer escrowDeductId = 56; // Integer | 
        String escrowDocPath = escrowDocPath_example; // String | 
        String docName = docName_example; // String | 
        Date dateCreated = 2013-10-20T19:20:30+01:00; // Date | 
        Boolean status = true; // Boolean | 
        Integer saleId = 56; // Integer | 
        String senderEmail = senderEmail_example; // String | 
        String receiverEmail = receiverEmail_example; // String | 
        try {
            apiInstance.apiSaleAddUpdateEscrowDocumentsPost(file, id, escrowDeductId, escrowDocPath, docName, dateCreated, status, saleId, senderEmail, receiverEmail);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdateEscrowDocumentsPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer id = 56; // Integer | 
        Integer escrowDeductId = 56; // Integer | 
        String escrowDocPath = escrowDocPath_example; // String | 
        String docName = docName_example; // String | 
        Date dateCreated = 2013-10-20T19:20:30+01:00; // Date | 
        Boolean status = true; // Boolean | 
        Integer saleId = 56; // Integer | 
        String senderEmail = senderEmail_example; // String | 
        String receiverEmail = receiverEmail_example; // String | 
        try {
            apiInstance.apiSaleAddUpdateEscrowDocumentsPost(file, id, escrowDeductId, escrowDocPath, docName, dateCreated, status, saleId, senderEmail, receiverEmail);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdateEscrowDocumentsPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
array[byte[]] *file = ; //  (optional)
Integer *id = 56; //  (optional)
Integer *escrowDeductId = 56; //  (optional)
String *escrowDocPath = escrowDocPath_example; //  (optional)
String *docName = docName_example; //  (optional)
Date *dateCreated = 2013-10-20T19:20:30+01:00; //  (optional)
Boolean *status = true; //  (optional)
Integer *saleId = 56; //  (optional)
String *senderEmail = senderEmail_example; //  (optional)
String *receiverEmail = receiverEmail_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Add Updates escrow documents for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleAddUpdateEscrowDocumentsPostWith:file
    id:id
    escrowDeductId:escrowDeductId
    escrowDocPath:escrowDocPath
    docName:docName
    dateCreated:dateCreated
    status:status
    saleId:saleId
    senderEmail:senderEmail
    receiverEmail:receiverEmail
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'file':  // {{array[byte[]]}} 
  'id': 56 // {{Integer}} 
  'escrowDeductId': 56 // {{Integer}} 
  'escrowDocPath': escrowDocPath_example // {{String}} 
  'docName': docName_example // {{String}} 
  'dateCreated': 2013-10-20T19:20:30+01:00 // {{Date}} 
  'status': true // {{Boolean}} 
  'saleId': 56 // {{Integer}} 
  'senderEmail': senderEmail_example // {{String}} 
  'receiverEmail': receiverEmail_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleAddUpdateEscrowDocumentsPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var file = new array[byte[]](); // array[byte[]] |  (optional) 
            var id = 56;  // Integer |  (optional) 
            var escrowDeductId = 56;  // Integer |  (optional) 
            var escrowDocPath = escrowDocPath_example;  // String |  (optional) 
            var docName = docName_example;  // String |  (optional) 
            var dateCreated = 2013-10-20T19:20:30+01:00;  // Date |  (optional) 
            var status = true;  // Boolean |  (optional) 
            var saleId = 56;  // Integer |  (optional) 
            var senderEmail = senderEmail_example;  // String |  (optional) 
            var receiverEmail = receiverEmail_example;  // String |  (optional) 

            try
            {
                // Add Updates escrow documents for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleAddUpdateEscrowDocumentsPost(file, id, escrowDeductId, escrowDocPath, docName, dateCreated, status, saleId, senderEmail, receiverEmail);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleAddUpdateEscrowDocumentsPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$file = ; // array[byte[]] | 
$id = 56; // Integer | 
$escrowDeductId = 56; // Integer | 
$escrowDocPath = escrowDocPath_example; // String | 
$docName = docName_example; // String | 
$dateCreated = 2013-10-20T19:20:30+01:00; // Date | 
$status = true; // Boolean | 
$saleId = 56; // Integer | 
$senderEmail = senderEmail_example; // String | 
$receiverEmail = receiverEmail_example; // String | 

try {
    $api_instance->apiSaleAddUpdateEscrowDocumentsPost($file, $id, $escrowDeductId, $escrowDocPath, $docName, $dateCreated, $status, $saleId, $senderEmail, $receiverEmail);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleAddUpdateEscrowDocumentsPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $file = []; # array[byte[]] | 
my $id = 56; # Integer | 
my $escrowDeductId = 56; # Integer | 
my $escrowDocPath = escrowDocPath_example; # String | 
my $docName = docName_example; # String | 
my $dateCreated = 2013-10-20T19:20:30+01:00; # Date | 
my $status = true; # Boolean | 
my $saleId = 56; # Integer | 
my $senderEmail = senderEmail_example; # String | 
my $receiverEmail = receiverEmail_example; # String | 

eval { 
    $api_instance->apiSaleAddUpdateEscrowDocumentsPost(file => $file, id => $id, escrowDeductId => $escrowDeductId, escrowDocPath => $escrowDocPath, docName => $docName, dateCreated => $dateCreated, status => $status, saleId => $saleId, senderEmail => $senderEmail, receiverEmail => $receiverEmail);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleAddUpdateEscrowDocumentsPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
file =  # array[byte[]] |  (optional)
id = 56 # Integer |  (optional)
escrowDeductId = 56 # Integer |  (optional)
escrowDocPath = escrowDocPath_example # String |  (optional)
docName = docName_example # String |  (optional)
dateCreated = 2013-10-20T19:20:30+01:00 # Date |  (optional)
status = true # Boolean |  (optional)
saleId = 56 # Integer |  (optional)
senderEmail = senderEmail_example # String |  (optional)
receiverEmail = receiverEmail_example # String |  (optional)

try: 
    # Add Updates escrow documents for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_add_update_escrow_documents_post(file=file, id=id, escrowDeductId=escrowDeductId, escrowDocPath=escrowDocPath, docName=docName, dateCreated=dateCreated, status=status, saleId=saleId, senderEmail=senderEmail, receiverEmail=receiverEmail)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleAddUpdateEscrowDocumentsPost: %s\n" % e)

Parameters

Form parameters
Name Description
File
array[byte[]] (binary)
Id
Integer (int32)
EscrowDeductId
Integer (int32)
EscrowDocPath
String
DocName
String
DateCreated
Date (date-time)
Status
Boolean
SaleId
Integer (int32)
SenderEmail
String
ReceiverEmail
String

Responses

Status: 200 - Success


apiSaleAddUpdateEscrowSalePost

Add updates escrow sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/AddUpdateEscrowSale

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Sale/AddUpdateEscrowSale"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.EscrowSale body = ; // BeagelManagers.Models.EscrowSale | 
        try {
            apiInstance.apiSaleAddUpdateEscrowSalePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdateEscrowSalePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.EscrowSale body = ; // BeagelManagers.Models.EscrowSale | 
        try {
            apiInstance.apiSaleAddUpdateEscrowSalePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdateEscrowSalePost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.EscrowSale *body = ; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Add updates escrow sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleAddUpdateEscrowSalePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.EscrowSale}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleAddUpdateEscrowSalePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var body = new BeagelManagers.Models.EscrowSale(); // BeagelManagers.Models.EscrowSale |  (optional) 

            try
            {
                // Add updates escrow sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleAddUpdateEscrowSalePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleAddUpdateEscrowSalePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$body = ; // BeagelManagers.Models.EscrowSale | 

try {
    $api_instance->apiSaleAddUpdateEscrowSalePost($body);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleAddUpdateEscrowSalePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.EscrowSale->new(); # BeagelManagers.Models.EscrowSale | 

eval { 
    $api_instance->apiSaleAddUpdateEscrowSalePost(body => $body);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleAddUpdateEscrowSalePost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
body =  # BeagelManagers.Models.EscrowSale |  (optional)

try: 
    # Add updates escrow sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_add_update_escrow_sale_post(body=body)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleAddUpdateEscrowSalePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiSaleAddUpdatePropertyPost

Adds or updates the property item (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/AddUpdateProperty

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Sale/AddUpdateProperty"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.Property body = ; // BeagelManagers.Models.Property | BeagelManagers.Models.Property
        try {
            apiInstance.apiSaleAddUpdatePropertyPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdatePropertyPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.Property body = ; // BeagelManagers.Models.Property | BeagelManagers.Models.Property
        try {
            apiInstance.apiSaleAddUpdatePropertyPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdatePropertyPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Property *body = ; // BeagelManagers.Models.Property (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Adds or updates the property item (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleAddUpdatePropertyPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Property}} BeagelManagers.Models.Property
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleAddUpdatePropertyPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var body = new BeagelManagers.Models.Property(); // BeagelManagers.Models.Property | BeagelManagers.Models.Property (optional) 

            try
            {
                // Adds or updates the property item (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleAddUpdatePropertyPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleAddUpdatePropertyPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$body = ; // BeagelManagers.Models.Property | BeagelManagers.Models.Property

try {
    $api_instance->apiSaleAddUpdatePropertyPost($body);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleAddUpdatePropertyPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Property->new(); # BeagelManagers.Models.Property | BeagelManagers.Models.Property

eval { 
    $api_instance->apiSaleAddUpdatePropertyPost(body => $body);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleAddUpdatePropertyPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
body =  # BeagelManagers.Models.Property | BeagelManagers.Models.Property (optional)

try: 
    # Adds or updates the property item (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_add_update_property_post(body=body)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleAddUpdatePropertyPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiSaleAddUpdateSalePost

Adds or updates the sale item (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/AddUpdateSale

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Sale/AddUpdateSale"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.Sale body = ; // BeagelManagers.Models.Sale | 
        try {
            apiInstance.apiSaleAddUpdateSalePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdateSalePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.Sale body = ; // BeagelManagers.Models.Sale | 
        try {
            apiInstance.apiSaleAddUpdateSalePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdateSalePost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Sale *body = ; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Adds or updates the sale item (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleAddUpdateSalePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Sale}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleAddUpdateSalePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var body = new BeagelManagers.Models.Sale(); // BeagelManagers.Models.Sale |  (optional) 

            try
            {
                // Adds or updates the sale item (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleAddUpdateSalePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleAddUpdateSalePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$body = ; // BeagelManagers.Models.Sale | 

try {
    $api_instance->apiSaleAddUpdateSalePost($body);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleAddUpdateSalePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Sale->new(); # BeagelManagers.Models.Sale | 

eval { 
    $api_instance->apiSaleAddUpdateSalePost(body => $body);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleAddUpdateSalePost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
body =  # BeagelManagers.Models.Sale |  (optional)

try: 
    # Adds or updates the sale item (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_add_update_sale_post(body=body)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleAddUpdateSalePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiSaleAddUpdateSalePropertyPost

Adds or updates the sale property item (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/AddUpdateSaleProperty

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Sale/AddUpdateSaleProperty"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.SaleProperty body = ; // BeagelManagers.Models.SaleProperty | BeagelManagers.Models.SaleProperty
        try {
            apiInstance.apiSaleAddUpdateSalePropertyPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdateSalePropertyPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.SaleProperty body = ; // BeagelManagers.Models.SaleProperty | BeagelManagers.Models.SaleProperty
        try {
            apiInstance.apiSaleAddUpdateSalePropertyPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdateSalePropertyPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.SaleProperty *body = ; // BeagelManagers.Models.SaleProperty (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Adds or updates the sale property item (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleAddUpdateSalePropertyPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.SaleProperty}} BeagelManagers.Models.SaleProperty
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleAddUpdateSalePropertyPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var body = new BeagelManagers.Models.SaleProperty(); // BeagelManagers.Models.SaleProperty | BeagelManagers.Models.SaleProperty (optional) 

            try
            {
                // Adds or updates the sale property item (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleAddUpdateSalePropertyPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleAddUpdateSalePropertyPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$body = ; // BeagelManagers.Models.SaleProperty | BeagelManagers.Models.SaleProperty

try {
    $api_instance->apiSaleAddUpdateSalePropertyPost($body);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleAddUpdateSalePropertyPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.SaleProperty->new(); # BeagelManagers.Models.SaleProperty | BeagelManagers.Models.SaleProperty

eval { 
    $api_instance->apiSaleAddUpdateSalePropertyPost(body => $body);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleAddUpdateSalePropertyPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
body =  # BeagelManagers.Models.SaleProperty | BeagelManagers.Models.SaleProperty (optional)

try: 
    # Adds or updates the sale property item (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_add_update_sale_property_post(body=body)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleAddUpdateSalePropertyPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiSaleAddUpdateVendorPost

Adds or updates a vendor to the sale property (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/AddUpdateVendor

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Sale/AddUpdateVendor"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.Vendor body = ; // BeagelManagers.Models.Vendor | BeagelManagers.Models.Vendor
        try {
            apiInstance.apiSaleAddUpdateVendorPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdateVendorPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.Vendor body = ; // BeagelManagers.Models.Vendor | BeagelManagers.Models.Vendor
        try {
            apiInstance.apiSaleAddUpdateVendorPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdateVendorPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Vendor *body = ; // BeagelManagers.Models.Vendor (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Adds or updates a vendor to the sale property (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleAddUpdateVendorPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Vendor}} BeagelManagers.Models.Vendor
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleAddUpdateVendorPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var body = new BeagelManagers.Models.Vendor(); // BeagelManagers.Models.Vendor | BeagelManagers.Models.Vendor (optional) 

            try
            {
                // Adds or updates a vendor to the sale property (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleAddUpdateVendorPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleAddUpdateVendorPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$body = ; // BeagelManagers.Models.Vendor | BeagelManagers.Models.Vendor

try {
    $api_instance->apiSaleAddUpdateVendorPost($body);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleAddUpdateVendorPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Vendor->new(); # BeagelManagers.Models.Vendor | BeagelManagers.Models.Vendor

eval { 
    $api_instance->apiSaleAddUpdateVendorPost(body => $body);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleAddUpdateVendorPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
body =  # BeagelManagers.Models.Vendor | BeagelManagers.Models.Vendor (optional)

try: 
    # Adds or updates a vendor to the sale property (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_add_update_vendor_post(body=body)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleAddUpdateVendorPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiSaleAddUpdateWatchListPost

Add update watchlist based on the registration of agent via bidder. (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/AddUpdateWatchList

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Sale/AddUpdateWatchList?Agent="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.WatchList body = ; // BeagelManagers.Models.WatchList | 
        String agent = agent_example; // String | 
        try {
            apiInstance.apiSaleAddUpdateWatchListPost(body, agent);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdateWatchListPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.WatchList body = ; // BeagelManagers.Models.WatchList | 
        String agent = agent_example; // String | 
        try {
            apiInstance.apiSaleAddUpdateWatchListPost(body, agent);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleAddUpdateWatchListPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.WatchList *body = ; //  (optional)
String *agent = agent_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Add update watchlist based on the registration of agent via bidder. (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleAddUpdateWatchListPostWith:body
    agent:agent
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.WatchList}} 
  'agent': agent_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleAddUpdateWatchListPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var body = new BeagelManagers.Models.WatchList(); // BeagelManagers.Models.WatchList |  (optional) 
            var agent = agent_example;  // String |  (optional) 

            try
            {
                // Add update watchlist based on the registration of agent via bidder. (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleAddUpdateWatchListPost(body, agent);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleAddUpdateWatchListPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$body = ; // BeagelManagers.Models.WatchList | 
$agent = agent_example; // String | 

try {
    $api_instance->apiSaleAddUpdateWatchListPost($body, $agent);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleAddUpdateWatchListPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.WatchList->new(); # BeagelManagers.Models.WatchList | 
my $agent = agent_example; # String | 

eval { 
    $api_instance->apiSaleAddUpdateWatchListPost(body => $body, agent => $agent);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleAddUpdateWatchListPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
body =  # BeagelManagers.Models.WatchList |  (optional)
agent = agent_example # String |  (optional)

try: 
    # Add update watchlist based on the registration of agent via bidder. (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_add_update_watch_list_post(body=body, agent=agent)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleAddUpdateWatchListPost: %s\n" % e)

Parameters

Body parameters
Name Description
body
Query parameters
Name Description
Agent
String

Responses

Status: 200 - Success


apiSaleChangeSaleStatusPost

Change the status of sale based on saleId and status (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/ChangeSaleStatus

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/ChangeSaleStatus?SaleId=&Status="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer saleId = 56; // Integer | 
        String status = status_example; // String | 
        try {
            apiInstance.apiSaleChangeSaleStatusPost(saleId, status);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleChangeSaleStatusPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer saleId = 56; // Integer | 
        String status = status_example; // String | 
        try {
            apiInstance.apiSaleChangeSaleStatusPost(saleId, status);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleChangeSaleStatusPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *saleId = 56; //  (optional)
String *status = status_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Change the status of sale based on saleId and status (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleChangeSaleStatusPostWith:saleId
    status:status
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'saleId': 56, // {{Integer}} 
  'status': status_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleChangeSaleStatusPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var saleId = 56;  // Integer |  (optional) 
            var status = status_example;  // String |  (optional) 

            try
            {
                // Change the status of sale based on saleId and status (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleChangeSaleStatusPost(saleId, status);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleChangeSaleStatusPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$saleId = 56; // Integer | 
$status = status_example; // String | 

try {
    $api_instance->apiSaleChangeSaleStatusPost($saleId, $status);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleChangeSaleStatusPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $saleId = 56; # Integer | 
my $status = status_example; # String | 

eval { 
    $api_instance->apiSaleChangeSaleStatusPost(saleId => $saleId, status => $status);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleChangeSaleStatusPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
saleId = 56 # Integer |  (optional)
status = status_example # String |  (optional)

try: 
    # Change the status of sale based on saleId and status (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_change_sale_status_post(saleId=saleId, status=status)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleChangeSaleStatusPost: %s\n" % e)

Parameters

Query parameters
Name Description
SaleId
Integer (int32)
Status
String

Responses

Status: 200 - Success


apiSaleCheckIfAgencyReferenceExistsGet

Check if agency reference exists in the system. (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/CheckIfAgencyReferenceExists

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/CheckIfAgencyReferenceExists?AgencyReference="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        String agencyReference = agencyReference_example; // String | 
        try {
            apiInstance.apiSaleCheckIfAgencyReferenceExistsGet(agencyReference);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleCheckIfAgencyReferenceExistsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        String agencyReference = agencyReference_example; // String | 
        try {
            apiInstance.apiSaleCheckIfAgencyReferenceExistsGet(agencyReference);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleCheckIfAgencyReferenceExistsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *agencyReference = agencyReference_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Check if agency reference exists in the system. (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleCheckIfAgencyReferenceExistsGetWith:agencyReference
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'agencyReference': agencyReference_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleCheckIfAgencyReferenceExistsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var agencyReference = agencyReference_example;  // String |  (optional) 

            try
            {
                // Check if agency reference exists in the system. (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleCheckIfAgencyReferenceExistsGet(agencyReference);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleCheckIfAgencyReferenceExistsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$agencyReference = agencyReference_example; // String | 

try {
    $api_instance->apiSaleCheckIfAgencyReferenceExistsGet($agencyReference);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleCheckIfAgencyReferenceExistsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $agencyReference = agencyReference_example; # String | 

eval { 
    $api_instance->apiSaleCheckIfAgencyReferenceExistsGet(agencyReference => $agencyReference);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleCheckIfAgencyReferenceExistsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
agencyReference = agencyReference_example # String |  (optional)

try: 
    # Check if agency reference exists in the system. (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_check_if_agency_reference_exists_get(agencyReference=agencyReference)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleCheckIfAgencyReferenceExistsGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyReference
String

Responses

Status: 200 - Success


apiSaleDeleteEscrowDocumentDelete

Delete escrow document (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/DeleteEscrowDocument

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/DeleteEscrowDocument?Id=&SaleId=&EscrowDeductId=&DocName="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer id = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        Integer escrowDeductId = 56; // Integer | 
        String docName = docName_example; // String | 
        try {
            apiInstance.apiSaleDeleteEscrowDocumentDelete(id, saleId, escrowDeductId, docName);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleDeleteEscrowDocumentDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer id = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        Integer escrowDeductId = 56; // Integer | 
        String docName = docName_example; // String | 
        try {
            apiInstance.apiSaleDeleteEscrowDocumentDelete(id, saleId, escrowDeductId, docName);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleDeleteEscrowDocumentDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  (optional)
Integer *saleId = 56; //  (optional)
Integer *escrowDeductId = 56; //  (optional)
String *docName = docName_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Delete escrow document (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleDeleteEscrowDocumentDeleteWith:id
    saleId:saleId
    escrowDeductId:escrowDeductId
    docName:docName
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'id': 56, // {{Integer}} 
  'saleId': 56, // {{Integer}} 
  'escrowDeductId': 56, // {{Integer}} 
  'docName': docName_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleDeleteEscrowDocumentDelete(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var id = 56;  // Integer |  (optional) 
            var saleId = 56;  // Integer |  (optional) 
            var escrowDeductId = 56;  // Integer |  (optional) 
            var docName = docName_example;  // String |  (optional) 

            try
            {
                // Delete escrow document (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleDeleteEscrowDocumentDelete(id, saleId, escrowDeductId, docName);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleDeleteEscrowDocumentDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$id = 56; // Integer | 
$saleId = 56; // Integer | 
$escrowDeductId = 56; // Integer | 
$docName = docName_example; // String | 

try {
    $api_instance->apiSaleDeleteEscrowDocumentDelete($id, $saleId, $escrowDeductId, $docName);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleDeleteEscrowDocumentDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $id = 56; # Integer | 
my $saleId = 56; # Integer | 
my $escrowDeductId = 56; # Integer | 
my $docName = docName_example; # String | 

eval { 
    $api_instance->apiSaleDeleteEscrowDocumentDelete(id => $id, saleId => $saleId, escrowDeductId => $escrowDeductId, docName => $docName);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleDeleteEscrowDocumentDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
id = 56 # Integer |  (optional)
saleId = 56 # Integer |  (optional)
escrowDeductId = 56 # Integer |  (optional)
docName = docName_example # String |  (optional)

try: 
    # Delete escrow document (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_delete_escrow_document_delete(id=id, saleId=saleId, escrowDeductId=escrowDeductId, docName=docName)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleDeleteEscrowDocumentDelete: %s\n" % e)

Parameters

Query parameters
Name Description
Id
Integer (int32)
SaleId
Integer (int32)
EscrowDeductId
Integer (int32)
DocName
String

Responses

Status: 200 - Success


apiSaleDeleteEscrowsByEscrowIdDelete

Deletes escrow deductions by id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/DeleteEscrowsByEscrowId

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/DeleteEscrowsByEscrowId?Id="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiSaleDeleteEscrowsByEscrowIdDelete(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleDeleteEscrowsByEscrowIdDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiSaleDeleteEscrowsByEscrowIdDelete(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleDeleteEscrowsByEscrowIdDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Deletes escrow deductions by id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleDeleteEscrowsByEscrowIdDeleteWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'id': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleDeleteEscrowsByEscrowIdDelete(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var id = 56;  // Integer |  (optional) 

            try
            {
                // Deletes escrow deductions by id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleDeleteEscrowsByEscrowIdDelete(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleDeleteEscrowsByEscrowIdDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$id = 56; // Integer | 

try {
    $api_instance->apiSaleDeleteEscrowsByEscrowIdDelete($id);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleDeleteEscrowsByEscrowIdDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $id = 56; # Integer | 

eval { 
    $api_instance->apiSaleDeleteEscrowsByEscrowIdDelete(id => $id);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleDeleteEscrowsByEscrowIdDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
id = 56 # Integer |  (optional)

try: 
    # Deletes escrow deductions by id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_delete_escrows_by_escrow_id_delete(id=id)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleDeleteEscrowsByEscrowIdDelete: %s\n" % e)

Parameters

Query parameters
Name Description
Id
Integer (int32)

Responses

Status: 200 - Success


apiSaleDeleteLegalPackDelete

Deletes Sale Legal pack (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/DeleteLegalPack

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/DeleteLegalPack?Id=&SaleId=&PropertyId=&FileName="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer id = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        Integer propertyId = 56; // Integer | 
        String fileName = fileName_example; // String | 
        try {
            apiInstance.apiSaleDeleteLegalPackDelete(id, saleId, propertyId, fileName);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleDeleteLegalPackDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer id = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        Integer propertyId = 56; // Integer | 
        String fileName = fileName_example; // String | 
        try {
            apiInstance.apiSaleDeleteLegalPackDelete(id, saleId, propertyId, fileName);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleDeleteLegalPackDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  (optional)
Integer *saleId = 56; //  (optional)
Integer *propertyId = 56; //  (optional)
String *fileName = fileName_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Deletes Sale Legal pack (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleDeleteLegalPackDeleteWith:id
    saleId:saleId
    propertyId:propertyId
    fileName:fileName
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'id': 56, // {{Integer}} 
  'saleId': 56, // {{Integer}} 
  'propertyId': 56, // {{Integer}} 
  'fileName': fileName_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleDeleteLegalPackDelete(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var id = 56;  // Integer |  (optional) 
            var saleId = 56;  // Integer |  (optional) 
            var propertyId = 56;  // Integer |  (optional) 
            var fileName = fileName_example;  // String |  (optional) 

            try
            {
                // Deletes Sale Legal pack (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleDeleteLegalPackDelete(id, saleId, propertyId, fileName);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleDeleteLegalPackDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$id = 56; // Integer | 
$saleId = 56; // Integer | 
$propertyId = 56; // Integer | 
$fileName = fileName_example; // String | 

try {
    $api_instance->apiSaleDeleteLegalPackDelete($id, $saleId, $propertyId, $fileName);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleDeleteLegalPackDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $id = 56; # Integer | 
my $saleId = 56; # Integer | 
my $propertyId = 56; # Integer | 
my $fileName = fileName_example; # String | 

eval { 
    $api_instance->apiSaleDeleteLegalPackDelete(id => $id, saleId => $saleId, propertyId => $propertyId, fileName => $fileName);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleDeleteLegalPackDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
id = 56 # Integer |  (optional)
saleId = 56 # Integer |  (optional)
propertyId = 56 # Integer |  (optional)
fileName = fileName_example # String |  (optional)

try: 
    # Deletes Sale Legal pack (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_delete_legal_pack_delete(id=id, saleId=saleId, propertyId=propertyId, fileName=fileName)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleDeleteLegalPackDelete: %s\n" % e)

Parameters

Query parameters
Name Description
Id
Integer (int32)
SaleId
Integer (int32)
PropertyId
Integer (int32)
FileName
String

Responses

Status: 200 - Success


apiSaleDeleteSalePropertyImageDelete

Deletes an Image from the sale property (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/DeleteSalePropertyImage

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/DeleteSalePropertyImage?Id=&SaleId=&PropertyId=&FileName="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer id = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        Integer propertyId = 56; // Integer | 
        String fileName = fileName_example; // String | 
        try {
            apiInstance.apiSaleDeleteSalePropertyImageDelete(id, saleId, propertyId, fileName);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleDeleteSalePropertyImageDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer id = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        Integer propertyId = 56; // Integer | 
        String fileName = fileName_example; // String | 
        try {
            apiInstance.apiSaleDeleteSalePropertyImageDelete(id, saleId, propertyId, fileName);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleDeleteSalePropertyImageDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  (optional)
Integer *saleId = 56; //  (optional)
Integer *propertyId = 56; //  (optional)
String *fileName = fileName_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Deletes an Image from the sale property (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleDeleteSalePropertyImageDeleteWith:id
    saleId:saleId
    propertyId:propertyId
    fileName:fileName
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'id': 56, // {{Integer}} 
  'saleId': 56, // {{Integer}} 
  'propertyId': 56, // {{Integer}} 
  'fileName': fileName_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleDeleteSalePropertyImageDelete(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var id = 56;  // Integer |  (optional) 
            var saleId = 56;  // Integer |  (optional) 
            var propertyId = 56;  // Integer |  (optional) 
            var fileName = fileName_example;  // String |  (optional) 

            try
            {
                // Deletes an Image from the sale property (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleDeleteSalePropertyImageDelete(id, saleId, propertyId, fileName);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleDeleteSalePropertyImageDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$id = 56; // Integer | 
$saleId = 56; // Integer | 
$propertyId = 56; // Integer | 
$fileName = fileName_example; // String | 

try {
    $api_instance->apiSaleDeleteSalePropertyImageDelete($id, $saleId, $propertyId, $fileName);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleDeleteSalePropertyImageDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $id = 56; # Integer | 
my $saleId = 56; # Integer | 
my $propertyId = 56; # Integer | 
my $fileName = fileName_example; # String | 

eval { 
    $api_instance->apiSaleDeleteSalePropertyImageDelete(id => $id, saleId => $saleId, propertyId => $propertyId, fileName => $fileName);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleDeleteSalePropertyImageDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
id = 56 # Integer |  (optional)
saleId = 56 # Integer |  (optional)
propertyId = 56 # Integer |  (optional)
fileName = fileName_example # String |  (optional)

try: 
    # Deletes an Image from the sale property (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_delete_sale_property_image_delete(id=id, saleId=saleId, propertyId=propertyId, fileName=fileName)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleDeleteSalePropertyImageDelete: %s\n" % e)

Parameters

Query parameters
Name Description
Id
Integer (int32)
SaleId
Integer (int32)
PropertyId
Integer (int32)
FileName
String

Responses

Status: 200 - Success


apiSaleGetAllSaleListingsByGroupNameGet

Gets all the sales listings for display by group name and status (Roles: SuperAdmin, Admin, GroupUser)


/api/Sale/GetAllSaleListingsByGroupName

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetAllSaleListingsByGroupName?GroupName=&Status="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        String groupName = groupName_example; // String | 
        String status = status_example; // String | 
        try {
            apiInstance.apiSaleGetAllSaleListingsByGroupNameGet(groupName, status);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetAllSaleListingsByGroupNameGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        String groupName = groupName_example; // String | 
        String status = status_example; // String | 
        try {
            apiInstance.apiSaleGetAllSaleListingsByGroupNameGet(groupName, status);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetAllSaleListingsByGroupNameGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *groupName = groupName_example; //  (optional)
String *status = status_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Gets all the sales listings for display by group name and status (Roles: SuperAdmin, Admin, GroupUser)
[apiInstance apiSaleGetAllSaleListingsByGroupNameGetWith:groupName
    status:status
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'groupName': groupName_example, // {{String}} 
  'status': status_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetAllSaleListingsByGroupNameGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var groupName = groupName_example;  // String |  (optional) 
            var status = status_example;  // String |  (optional) 

            try
            {
                // Gets all the sales listings for display by group name and status (Roles: SuperAdmin, Admin, GroupUser)
                apiInstance.apiSaleGetAllSaleListingsByGroupNameGet(groupName, status);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetAllSaleListingsByGroupNameGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$groupName = groupName_example; // String | 
$status = status_example; // String | 

try {
    $api_instance->apiSaleGetAllSaleListingsByGroupNameGet($groupName, $status);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetAllSaleListingsByGroupNameGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $groupName = groupName_example; # String | 
my $status = status_example; # String | 

eval { 
    $api_instance->apiSaleGetAllSaleListingsByGroupNameGet(groupName => $groupName, status => $status);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetAllSaleListingsByGroupNameGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
groupName = groupName_example # String |  (optional)
status = status_example # String |  (optional)

try: 
    # Gets all the sales listings for display by group name and status (Roles: SuperAdmin, Admin, GroupUser)
    api_instance.api_sale_get_all_sale_listings_by_group_name_get(groupName=groupName, status=status)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetAllSaleListingsByGroupNameGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupName
String
Status
String

Responses

Status: 200 - Success


apiSaleGetAllSaleListingsForAgencyNameGet

get all sale listings for a particular agency (Roles: SuperAdmin, Admin, GroupUser, AgencyUser)


/api/Sale/GetAllSaleListingsForAgencyName

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetAllSaleListingsForAgencyName?Agency="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        String agency = agency_example; // String | 
        try {
            apiInstance.apiSaleGetAllSaleListingsForAgencyNameGet(agency);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetAllSaleListingsForAgencyNameGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        String agency = agency_example; // String | 
        try {
            apiInstance.apiSaleGetAllSaleListingsForAgencyNameGet(agency);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetAllSaleListingsForAgencyNameGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *agency = agency_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// get all sale listings for a particular agency (Roles: SuperAdmin, Admin, GroupUser, AgencyUser)
[apiInstance apiSaleGetAllSaleListingsForAgencyNameGetWith:agency
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'agency': agency_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetAllSaleListingsForAgencyNameGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var agency = agency_example;  // String |  (optional) 

            try
            {
                // get all sale listings for a particular agency (Roles: SuperAdmin, Admin, GroupUser, AgencyUser)
                apiInstance.apiSaleGetAllSaleListingsForAgencyNameGet(agency);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetAllSaleListingsForAgencyNameGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$agency = agency_example; // String | 

try {
    $api_instance->apiSaleGetAllSaleListingsForAgencyNameGet($agency);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetAllSaleListingsForAgencyNameGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $agency = agency_example; # String | 

eval { 
    $api_instance->apiSaleGetAllSaleListingsForAgencyNameGet(agency => $agency);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetAllSaleListingsForAgencyNameGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
agency = agency_example # String |  (optional)

try: 
    # get all sale listings for a particular agency (Roles: SuperAdmin, Admin, GroupUser, AgencyUser)
    api_instance.api_sale_get_all_sale_listings_for_agency_name_get(agency=agency)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetAllSaleListingsForAgencyNameGet: %s\n" % e)

Parameters

Query parameters
Name Description
Agency
String

Responses

Status: 200 - Success


apiSaleGetAllSaleListingsGet

Gets all the sales listings for display by status (Roles: SuperAdmin)


/api/Sale/GetAllSaleListings

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetAllSaleListings?Status="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        String status = status_example; // String | 
        try {
            apiInstance.apiSaleGetAllSaleListingsGet(status);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetAllSaleListingsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        String status = status_example; // String | 
        try {
            apiInstance.apiSaleGetAllSaleListingsGet(status);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetAllSaleListingsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *status = status_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Gets all the sales listings for display by status (Roles: SuperAdmin)
[apiInstance apiSaleGetAllSaleListingsGetWith:status
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'status': status_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetAllSaleListingsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var status = status_example;  // String |  (optional) 

            try
            {
                // Gets all the sales listings for display by status (Roles: SuperAdmin)
                apiInstance.apiSaleGetAllSaleListingsGet(status);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetAllSaleListingsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$status = status_example; // String | 

try {
    $api_instance->apiSaleGetAllSaleListingsGet($status);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetAllSaleListingsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $status = status_example; # String | 

eval { 
    $api_instance->apiSaleGetAllSaleListingsGet(status => $status);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetAllSaleListingsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
status = status_example # String |  (optional)

try: 
    # Gets all the sales listings for display by status (Roles: SuperAdmin)
    api_instance.api_sale_get_all_sale_listings_get(status=status)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetAllSaleListingsGet: %s\n" % e)

Parameters

Query parameters
Name Description
Status
String

Responses

Status: 200 - Success


apiSaleGetBranchAccountDetailsGet

Get branch account details for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/GetBranchAccountDetails

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetBranchAccountDetails?BranchId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetBranchAccountDetailsGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetBranchAccountDetailsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetBranchAccountDetailsGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetBranchAccountDetailsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *branchId = 56; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get branch account details for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleGetBranchAccountDetailsGetWith:branchId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'branchId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetBranchAccountDetailsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var branchId = 56;  // Integer |  (optional) 

            try
            {
                // Get branch account details for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleGetBranchAccountDetailsGet(branchId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetBranchAccountDetailsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$branchId = 56; // Integer | 

try {
    $api_instance->apiSaleGetBranchAccountDetailsGet($branchId);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetBranchAccountDetailsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $branchId = 56; # Integer | 

eval { 
    $api_instance->apiSaleGetBranchAccountDetailsGet(branchId => $branchId);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetBranchAccountDetailsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
branchId = 56 # Integer |  (optional)

try: 
    # Get branch account details for sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_get_branch_account_details_get(branchId=branchId)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetBranchAccountDetailsGet: %s\n" % e)

Parameters

Query parameters
Name Description
BranchId
Integer (int32)

Responses

Status: 200 - Success


apiSaleGetEscrowDeductionsBySaleIdGet

Get escrow deductions by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/GetEscrowDeductionsBySaleId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetEscrowDeductionsBySaleId?SaleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetEscrowDeductionsBySaleIdGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetEscrowDeductionsBySaleIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetEscrowDeductionsBySaleIdGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetEscrowDeductionsBySaleIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *saleId = 56; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get escrow deductions by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleGetEscrowDeductionsBySaleIdGetWith:saleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'saleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetEscrowDeductionsBySaleIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var saleId = 56;  // Integer |  (optional) 

            try
            {
                // Get escrow deductions by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleGetEscrowDeductionsBySaleIdGet(saleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetEscrowDeductionsBySaleIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$saleId = 56; // Integer | 

try {
    $api_instance->apiSaleGetEscrowDeductionsBySaleIdGet($saleId);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetEscrowDeductionsBySaleIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $saleId = 56; # Integer | 

eval { 
    $api_instance->apiSaleGetEscrowDeductionsBySaleIdGet(saleId => $saleId);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetEscrowDeductionsBySaleIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
saleId = 56 # Integer |  (optional)

try: 
    # Get escrow deductions by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_get_escrow_deductions_by_sale_id_get(saleId=saleId)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetEscrowDeductionsBySaleIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
SaleId
Integer (int32)

Responses

Status: 200 - Success


apiSaleGetEscrowDocumentsByEscrowDeductIdGet

Get escrow documents by escrow deduct id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/GetEscrowDocumentsByEscrowDeductId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetEscrowDocumentsByEscrowDeductId?EscrowDeductId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer escrowDeductId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetEscrowDocumentsByEscrowDeductIdGet(escrowDeductId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetEscrowDocumentsByEscrowDeductIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer escrowDeductId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetEscrowDocumentsByEscrowDeductIdGet(escrowDeductId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetEscrowDocumentsByEscrowDeductIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *escrowDeductId = 56; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get escrow documents by escrow deduct id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleGetEscrowDocumentsByEscrowDeductIdGetWith:escrowDeductId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'escrowDeductId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetEscrowDocumentsByEscrowDeductIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var escrowDeductId = 56;  // Integer |  (optional) 

            try
            {
                // Get escrow documents by escrow deduct id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleGetEscrowDocumentsByEscrowDeductIdGet(escrowDeductId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetEscrowDocumentsByEscrowDeductIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$escrowDeductId = 56; // Integer | 

try {
    $api_instance->apiSaleGetEscrowDocumentsByEscrowDeductIdGet($escrowDeductId);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetEscrowDocumentsByEscrowDeductIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $escrowDeductId = 56; # Integer | 

eval { 
    $api_instance->apiSaleGetEscrowDocumentsByEscrowDeductIdGet(escrowDeductId => $escrowDeductId);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetEscrowDocumentsByEscrowDeductIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
escrowDeductId = 56 # Integer |  (optional)

try: 
    # Get escrow documents by escrow deduct id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_get_escrow_documents_by_escrow_deduct_id_get(escrowDeductId=escrowDeductId)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetEscrowDocumentsByEscrowDeductIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
EscrowDeductId
Integer (int32)

Responses

Status: 200 - Success


apiSaleGetEscrowSaleBySaleIdGet

Get escrow sale by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/GetEscrowSaleBySaleId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetEscrowSaleBySaleId?SaleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetEscrowSaleBySaleIdGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetEscrowSaleBySaleIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetEscrowSaleBySaleIdGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetEscrowSaleBySaleIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *saleId = 56; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get escrow sale by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleGetEscrowSaleBySaleIdGetWith:saleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'saleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetEscrowSaleBySaleIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var saleId = 56;  // Integer |  (optional) 

            try
            {
                // Get escrow sale by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleGetEscrowSaleBySaleIdGet(saleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetEscrowSaleBySaleIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$saleId = 56; // Integer | 

try {
    $api_instance->apiSaleGetEscrowSaleBySaleIdGet($saleId);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetEscrowSaleBySaleIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $saleId = 56; # Integer | 

eval { 
    $api_instance->apiSaleGetEscrowSaleBySaleIdGet(saleId => $saleId);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetEscrowSaleBySaleIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
saleId = 56 # Integer |  (optional)

try: 
    # Get escrow sale by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_get_escrow_sale_by_sale_id_get(saleId=saleId)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetEscrowSaleBySaleIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
SaleId
Integer (int32)

Responses

Status: 200 - Success


apiSaleGetLiveSalesWithAgencyRefIdGet

Get sale with agency reference id and status. Returns data from live database


/api/Sale/GetLiveSalesWithAgencyRefId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetLiveSalesWithAgencyRefId?agencyRefId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        String agencyRefId = agencyRefId_example; // String | 
        try {
            apiInstance.apiSaleGetLiveSalesWithAgencyRefIdGet(agencyRefId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetLiveSalesWithAgencyRefIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        String agencyRefId = agencyRefId_example; // String | 
        try {
            apiInstance.apiSaleGetLiveSalesWithAgencyRefIdGet(agencyRefId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetLiveSalesWithAgencyRefIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *agencyRefId = agencyRefId_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get sale with agency reference id and status. Returns data from live database
[apiInstance apiSaleGetLiveSalesWithAgencyRefIdGetWith:agencyRefId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'agencyRefId': agencyRefId_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetLiveSalesWithAgencyRefIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var agencyRefId = agencyRefId_example;  // String |  (optional) 

            try
            {
                // Get sale with agency reference id and status. Returns data from live database
                apiInstance.apiSaleGetLiveSalesWithAgencyRefIdGet(agencyRefId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetLiveSalesWithAgencyRefIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$agencyRefId = agencyRefId_example; // String | 

try {
    $api_instance->apiSaleGetLiveSalesWithAgencyRefIdGet($agencyRefId);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetLiveSalesWithAgencyRefIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $agencyRefId = agencyRefId_example; # String | 

eval { 
    $api_instance->apiSaleGetLiveSalesWithAgencyRefIdGet(agencyRefId => $agencyRefId);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetLiveSalesWithAgencyRefIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
agencyRefId = agencyRefId_example # String |  (optional)

try: 
    # Get sale with agency reference id and status. Returns data from live database
    api_instance.api_sale_get_live_sales_with_agency_ref_id_get(agencyRefId=agencyRefId)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetLiveSalesWithAgencyRefIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
agencyRefId
String

Responses

Status: 200 - Success


apiSaleGetMainSalePropertyImageGet

Get Main Sale Property Image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/GetMainSalePropertyImage

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetMainSalePropertyImage?SalePropertyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer salePropertyId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetMainSalePropertyImageGet(salePropertyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetMainSalePropertyImageGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer salePropertyId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetMainSalePropertyImageGet(salePropertyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetMainSalePropertyImageGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *salePropertyId = 56; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get Main Sale Property Image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleGetMainSalePropertyImageGetWith:salePropertyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'salePropertyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetMainSalePropertyImageGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var salePropertyId = 56;  // Integer |  (optional) 

            try
            {
                // Get Main Sale Property Image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleGetMainSalePropertyImageGet(salePropertyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetMainSalePropertyImageGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$salePropertyId = 56; // Integer | 

try {
    $api_instance->apiSaleGetMainSalePropertyImageGet($salePropertyId);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetMainSalePropertyImageGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $salePropertyId = 56; # Integer | 

eval { 
    $api_instance->apiSaleGetMainSalePropertyImageGet(salePropertyId => $salePropertyId);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetMainSalePropertyImageGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
salePropertyId = 56 # Integer |  (optional)

try: 
    # Get Main Sale Property Image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_get_main_sale_property_image_get(salePropertyId=salePropertyId)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetMainSalePropertyImageGet: %s\n" % e)

Parameters

Query parameters
Name Description
SalePropertyId
Integer (int32)

Responses

Status: 200 - Success


apiSaleGetPrimarySalePropertyImageGet

Gets the primary sale image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/GetPrimarySalePropertyImage

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Accept: text/plain,application/json,text/json"\
"//api/Sale/GetPrimarySalePropertyImage?SalePropertyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer salePropertyId = 56; // Integer | 
        try {
            System.IO.FileStream result = apiInstance.apiSaleGetPrimarySalePropertyImageGet(salePropertyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetPrimarySalePropertyImageGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer salePropertyId = 56; // Integer | 
        try {
            System.IO.FileStream result = apiInstance.apiSaleGetPrimarySalePropertyImageGet(salePropertyId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetPrimarySalePropertyImageGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *salePropertyId = 56; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Gets the primary sale image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleGetPrimarySalePropertyImageGetWith:salePropertyId
              completionHandler: ^(System.IO.FileStream output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'salePropertyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.apiSaleGetPrimarySalePropertyImageGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var salePropertyId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the primary sale image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                System.IO.FileStream result = apiInstance.apiSaleGetPrimarySalePropertyImageGet(salePropertyId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetPrimarySalePropertyImageGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$salePropertyId = 56; // Integer | 

try {
    $result = $api_instance->apiSaleGetPrimarySalePropertyImageGet($salePropertyId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetPrimarySalePropertyImageGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $salePropertyId = 56; # Integer | 

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


# create an instance of the API class
api_instance = swagger_client.SaleApi()
salePropertyId = 56 # Integer |  (optional)

try: 
    # Gets the primary sale image (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_response = api_instance.api_sale_get_primary_sale_property_image_get(salePropertyId=salePropertyId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetPrimarySalePropertyImageGet: %s\n" % e)

Parameters

Query parameters
Name Description
SalePropertyId
Integer (int32)

Responses

Status: 200 - Success


apiSaleGetPropertySaleDetailsGet

Get property details by agency reference (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/GetPropertySaleDetails

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetPropertySaleDetails?AgencyId=&BidderId=&AgencyReference="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer agencyId = 56; // Integer | 
        Integer bidderId = 56; // Integer | 
        String agencyReference = agencyReference_example; // String | 
        try {
            apiInstance.apiSaleGetPropertySaleDetailsGet(agencyId, bidderId, agencyReference);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetPropertySaleDetailsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer agencyId = 56; // Integer | 
        Integer bidderId = 56; // Integer | 
        String agencyReference = agencyReference_example; // String | 
        try {
            apiInstance.apiSaleGetPropertySaleDetailsGet(agencyId, bidderId, agencyReference);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetPropertySaleDetailsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)
Integer *bidderId = 56; //  (optional)
String *agencyReference = agencyReference_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get property details by agency reference (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleGetPropertySaleDetailsGetWith:agencyId
    bidderId:bidderId
    agencyReference:agencyReference
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'agencyId': 56, // {{Integer}} 
  'bidderId': 56, // {{Integer}} 
  'agencyReference': agencyReference_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetPropertySaleDetailsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var agencyId = 56;  // Integer |  (optional) 
            var bidderId = 56;  // Integer |  (optional) 
            var agencyReference = agencyReference_example;  // String |  (optional) 

            try
            {
                // Get property details by agency reference (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleGetPropertySaleDetailsGet(agencyId, bidderId, agencyReference);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetPropertySaleDetailsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$agencyId = 56; // Integer | 
$bidderId = 56; // Integer | 
$agencyReference = agencyReference_example; // String | 

try {
    $api_instance->apiSaleGetPropertySaleDetailsGet($agencyId, $bidderId, $agencyReference);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetPropertySaleDetailsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $agencyId = 56; # Integer | 
my $bidderId = 56; # Integer | 
my $agencyReference = agencyReference_example; # String | 

eval { 
    $api_instance->apiSaleGetPropertySaleDetailsGet(agencyId => $agencyId, bidderId => $bidderId, agencyReference => $agencyReference);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetPropertySaleDetailsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
agencyId = 56 # Integer |  (optional)
bidderId = 56 # Integer |  (optional)
agencyReference = agencyReference_example # String |  (optional)

try: 
    # Get property details by agency reference (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_get_property_sale_details_get(agencyId=agencyId, bidderId=bidderId, agencyReference=agencyReference)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetPropertySaleDetailsGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)
BidderId
Integer (int32)
AgencyReference
String

Responses

Status: 200 - Success


apiSaleGetPrsaReportGet

Get the PRSA report by Sale Id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/GetPrsaReport

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetPrsaReport?SaleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetPrsaReportGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetPrsaReportGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetPrsaReportGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetPrsaReportGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *saleId = 56; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get the PRSA report by Sale Id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleGetPrsaReportGetWith:saleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'saleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetPrsaReportGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var saleId = 56;  // Integer |  (optional) 

            try
            {
                // Get the PRSA report by Sale Id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleGetPrsaReportGet(saleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetPrsaReportGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$saleId = 56; // Integer | 

try {
    $api_instance->apiSaleGetPrsaReportGet($saleId);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetPrsaReportGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $saleId = 56; # Integer | 

eval { 
    $api_instance->apiSaleGetPrsaReportGet(saleId => $saleId);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetPrsaReportGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
saleId = 56 # Integer |  (optional)

try: 
    # Get the PRSA report by Sale Id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_get_prsa_report_get(saleId=saleId)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetPrsaReportGet: %s\n" % e)

Parameters

Query parameters
Name Description
SaleId
Integer (int32)

Responses

Status: 200 - Success


apiSaleGetSaleDetailsByAgencyReferenceIdGet

Get sale details by agency reference id


/api/Sale/GetSaleDetailsByAgencyReferenceId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetSaleDetailsByAgencyReferenceId?AgencyReference="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        String agencyReference = agencyReference_example; // String | 
        try {
            apiInstance.apiSaleGetSaleDetailsByAgencyReferenceIdGet(agencyReference);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSaleDetailsByAgencyReferenceIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        String agencyReference = agencyReference_example; // String | 
        try {
            apiInstance.apiSaleGetSaleDetailsByAgencyReferenceIdGet(agencyReference);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSaleDetailsByAgencyReferenceIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *agencyReference = agencyReference_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get sale details by agency reference id
[apiInstance apiSaleGetSaleDetailsByAgencyReferenceIdGetWith:agencyReference
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'agencyReference': agencyReference_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetSaleDetailsByAgencyReferenceIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var agencyReference = agencyReference_example;  // String |  (optional) 

            try
            {
                // Get sale details by agency reference id
                apiInstance.apiSaleGetSaleDetailsByAgencyReferenceIdGet(agencyReference);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetSaleDetailsByAgencyReferenceIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$agencyReference = agencyReference_example; // String | 

try {
    $api_instance->apiSaleGetSaleDetailsByAgencyReferenceIdGet($agencyReference);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetSaleDetailsByAgencyReferenceIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $agencyReference = agencyReference_example; # String | 

eval { 
    $api_instance->apiSaleGetSaleDetailsByAgencyReferenceIdGet(agencyReference => $agencyReference);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetSaleDetailsByAgencyReferenceIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
agencyReference = agencyReference_example # String |  (optional)

try: 
    # Get sale details by agency reference id
    api_instance.api_sale_get_sale_details_by_agency_reference_id_get(agencyReference=agencyReference)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetSaleDetailsByAgencyReferenceIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyReference
String

Responses

Status: 200 - Success


apiSaleGetSaleGet

Get sale details by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/GetSale

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetSale?saleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetSaleGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSaleGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetSaleGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSaleGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *saleId = 56; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get sale details by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleGetSaleGetWith:saleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'saleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetSaleGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var saleId = 56;  // Integer |  (optional) 

            try
            {
                // Get sale details by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleGetSaleGet(saleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetSaleGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$saleId = 56; // Integer | 

try {
    $api_instance->apiSaleGetSaleGet($saleId);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetSaleGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $saleId = 56; # Integer | 

eval { 
    $api_instance->apiSaleGetSaleGet(saleId => $saleId);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetSaleGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
saleId = 56 # Integer |  (optional)

try: 
    # Get sale details by sale id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_get_sale_get(saleId=saleId)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetSaleGet: %s\n" % e)

Parameters

Query parameters
Name Description
saleId
Integer (int32)

Responses

Status: 200 - Success


apiSaleGetSaleListGet

Get search results for geo chart (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/GetSaleList

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetSaleList?AgencyId=&BranchId=&AgentId=&Role=&Status=&FromDate=&ToDate=&NoOfBeds="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        String agencyId = agencyId_example; // String | 
        String branchId = branchId_example; // String | 
        String agentId = agentId_example; // String | 
        String role = role_example; // String | 
        String status = status_example; // String | 
        String fromDate = fromDate_example; // String | 
        String toDate = toDate_example; // String | 
        String noOfBeds = noOfBeds_example; // String | 
        try {
            apiInstance.apiSaleGetSaleListGet(agencyId, branchId, agentId, role, status, fromDate, toDate, noOfBeds);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSaleListGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        String agencyId = agencyId_example; // String | 
        String branchId = branchId_example; // String | 
        String agentId = agentId_example; // String | 
        String role = role_example; // String | 
        String status = status_example; // String | 
        String fromDate = fromDate_example; // String | 
        String toDate = toDate_example; // String | 
        String noOfBeds = noOfBeds_example; // String | 
        try {
            apiInstance.apiSaleGetSaleListGet(agencyId, branchId, agentId, role, status, fromDate, toDate, noOfBeds);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSaleListGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *agencyId = agencyId_example; //  (optional)
String *branchId = branchId_example; //  (optional)
String *agentId = agentId_example; //  (optional)
String *role = role_example; //  (optional)
String *status = status_example; //  (optional)
String *fromDate = fromDate_example; //  (optional)
String *toDate = toDate_example; //  (optional)
String *noOfBeds = noOfBeds_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get search results for geo chart (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleGetSaleListGetWith:agencyId
    branchId:branchId
    agentId:agentId
    role:role
    status:status
    fromDate:fromDate
    toDate:toDate
    noOfBeds:noOfBeds
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'agencyId': agencyId_example, // {{String}} 
  'branchId': branchId_example, // {{String}} 
  'agentId': agentId_example, // {{String}} 
  'role': role_example, // {{String}} 
  'status': status_example, // {{String}} 
  'fromDate': fromDate_example, // {{String}} 
  'toDate': toDate_example, // {{String}} 
  'noOfBeds': noOfBeds_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetSaleListGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var agencyId = agencyId_example;  // String |  (optional) 
            var branchId = branchId_example;  // String |  (optional) 
            var agentId = agentId_example;  // String |  (optional) 
            var role = role_example;  // String |  (optional) 
            var status = status_example;  // String |  (optional) 
            var fromDate = fromDate_example;  // String |  (optional) 
            var toDate = toDate_example;  // String |  (optional) 
            var noOfBeds = noOfBeds_example;  // String |  (optional) 

            try
            {
                // Get search results for geo chart (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleGetSaleListGet(agencyId, branchId, agentId, role, status, fromDate, toDate, noOfBeds);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetSaleListGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$agencyId = agencyId_example; // String | 
$branchId = branchId_example; // String | 
$agentId = agentId_example; // String | 
$role = role_example; // String | 
$status = status_example; // String | 
$fromDate = fromDate_example; // String | 
$toDate = toDate_example; // String | 
$noOfBeds = noOfBeds_example; // String | 

try {
    $api_instance->apiSaleGetSaleListGet($agencyId, $branchId, $agentId, $role, $status, $fromDate, $toDate, $noOfBeds);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetSaleListGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $agencyId = agencyId_example; # String | 
my $branchId = branchId_example; # String | 
my $agentId = agentId_example; # String | 
my $role = role_example; # String | 
my $status = status_example; # String | 
my $fromDate = fromDate_example; # String | 
my $toDate = toDate_example; # String | 
my $noOfBeds = noOfBeds_example; # String | 

eval { 
    $api_instance->apiSaleGetSaleListGet(agencyId => $agencyId, branchId => $branchId, agentId => $agentId, role => $role, status => $status, fromDate => $fromDate, toDate => $toDate, noOfBeds => $noOfBeds);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetSaleListGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
agencyId = agencyId_example # String |  (optional)
branchId = branchId_example # String |  (optional)
agentId = agentId_example # String |  (optional)
role = role_example # String |  (optional)
status = status_example # String |  (optional)
fromDate = fromDate_example # String |  (optional)
toDate = toDate_example # String |  (optional)
noOfBeds = noOfBeds_example # String |  (optional)

try: 
    # Get search results for geo chart (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_get_sale_list_get(agencyId=agencyId, branchId=branchId, agentId=agentId, role=role, status=status, fromDate=fromDate, toDate=toDate, noOfBeds=noOfBeds)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetSaleListGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
String
BranchId
String
AgentId
String
Role
String
Status
String
FromDate
String
ToDate
String
NoOfBeds
String

Responses

Status: 200 - Success


apiSaleGetSalePropertyLegalPackGet

Gets the primary sale image (Roles: All)


/api/Sale/GetSalePropertyLegalPack

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetSalePropertyLegalPack?LegalPackId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer legalPackId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetSalePropertyLegalPackGet(legalPackId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSalePropertyLegalPackGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer legalPackId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetSalePropertyLegalPackGet(legalPackId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSalePropertyLegalPackGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *legalPackId = 56; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Gets the primary sale image (Roles: All)
[apiInstance apiSaleGetSalePropertyLegalPackGetWith:legalPackId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'legalPackId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetSalePropertyLegalPackGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var legalPackId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the primary sale image (Roles: All)
                apiInstance.apiSaleGetSalePropertyLegalPackGet(legalPackId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetSalePropertyLegalPackGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$legalPackId = 56; // Integer | 

try {
    $api_instance->apiSaleGetSalePropertyLegalPackGet($legalPackId);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetSalePropertyLegalPackGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $legalPackId = 56; # Integer | 

eval { 
    $api_instance->apiSaleGetSalePropertyLegalPackGet(legalPackId => $legalPackId);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetSalePropertyLegalPackGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
legalPackId = 56 # Integer |  (optional)

try: 
    # Gets the primary sale image (Roles: All)
    api_instance.api_sale_get_sale_property_legal_pack_get(legalPackId=legalPackId)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetSalePropertyLegalPackGet: %s\n" % e)

Parameters

Query parameters
Name Description
LegalPackId
Integer (int32)

Responses

Status: 200 - Success


apiSaleGetSalePropertyLegalPacksGet

Get Legal packs for the sale via sale property id (Roles: All)


/api/Sale/GetSalePropertyLegalPacks

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetSalePropertyLegalPacks?SalePropertyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer salePropertyId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetSalePropertyLegalPacksGet(salePropertyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSalePropertyLegalPacksGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer salePropertyId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetSalePropertyLegalPacksGet(salePropertyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSalePropertyLegalPacksGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *salePropertyId = 56; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get Legal packs for the sale via sale property id (Roles: All)
[apiInstance apiSaleGetSalePropertyLegalPacksGetWith:salePropertyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'salePropertyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetSalePropertyLegalPacksGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var salePropertyId = 56;  // Integer |  (optional) 

            try
            {
                // Get Legal packs for the sale via sale property id (Roles: All)
                apiInstance.apiSaleGetSalePropertyLegalPacksGet(salePropertyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetSalePropertyLegalPacksGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$salePropertyId = 56; // Integer | 

try {
    $api_instance->apiSaleGetSalePropertyLegalPacksGet($salePropertyId);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetSalePropertyLegalPacksGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $salePropertyId = 56; # Integer | 

eval { 
    $api_instance->apiSaleGetSalePropertyLegalPacksGet(salePropertyId => $salePropertyId);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetSalePropertyLegalPacksGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
salePropertyId = 56 # Integer |  (optional)

try: 
    # Get Legal packs for the sale via sale property id (Roles: All)
    api_instance.api_sale_get_sale_property_legal_packs_get(salePropertyId=salePropertyId)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetSalePropertyLegalPacksGet: %s\n" % e)

Parameters

Query parameters
Name Description
SalePropertyId
Integer (int32)

Responses

Status: 200 - Success


apiSaleGetSalesByAgencyReferenceGet

Get sales by agency reference (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/GetSalesByAgencyReference

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetSalesByAgencyReference?SaleId=&AgencyId=&AgencyReference="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer saleId = 56; // Integer | 
        Integer agencyId = 56; // Integer | 
        String agencyReference = agencyReference_example; // String | 
        try {
            apiInstance.apiSaleGetSalesByAgencyReferenceGet(saleId, agencyId, agencyReference);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSalesByAgencyReferenceGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer saleId = 56; // Integer | 
        Integer agencyId = 56; // Integer | 
        String agencyReference = agencyReference_example; // String | 
        try {
            apiInstance.apiSaleGetSalesByAgencyReferenceGet(saleId, agencyId, agencyReference);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSalesByAgencyReferenceGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *saleId = 56; //  (optional)
Integer *agencyId = 56; //  (optional)
String *agencyReference = agencyReference_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get sales by agency reference (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleGetSalesByAgencyReferenceGetWith:saleId
    agencyId:agencyId
    agencyReference:agencyReference
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'saleId': 56, // {{Integer}} 
  'agencyId': 56, // {{Integer}} 
  'agencyReference': agencyReference_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetSalesByAgencyReferenceGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var saleId = 56;  // Integer |  (optional) 
            var agencyId = 56;  // Integer |  (optional) 
            var agencyReference = agencyReference_example;  // String |  (optional) 

            try
            {
                // Get sales by agency reference (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleGetSalesByAgencyReferenceGet(saleId, agencyId, agencyReference);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetSalesByAgencyReferenceGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$saleId = 56; // Integer | 
$agencyId = 56; // Integer | 
$agencyReference = agencyReference_example; // String | 

try {
    $api_instance->apiSaleGetSalesByAgencyReferenceGet($saleId, $agencyId, $agencyReference);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetSalesByAgencyReferenceGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $saleId = 56; # Integer | 
my $agencyId = 56; # Integer | 
my $agencyReference = agencyReference_example; # String | 

eval { 
    $api_instance->apiSaleGetSalesByAgencyReferenceGet(saleId => $saleId, agencyId => $agencyId, agencyReference => $agencyReference);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetSalesByAgencyReferenceGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
saleId = 56 # Integer |  (optional)
agencyId = 56 # Integer |  (optional)
agencyReference = agencyReference_example # String |  (optional)

try: 
    # Get sales by agency reference (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_get_sales_by_agency_reference_get(saleId=saleId, agencyId=agencyId, agencyReference=agencyReference)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetSalesByAgencyReferenceGet: %s\n" % e)

Parameters

Query parameters
Name Description
SaleId
Integer (int32)
AgencyId
Integer (int32)
AgencyReference
String

Responses

Status: 200 - Success


apiSaleGetSalesByBidderIdGet

Gets sales by Bidder Id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BuyerAgent, Bidder)


/api/Sale/GetSalesByBidderId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetSalesByBidderId?BidderId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer bidderId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetSalesByBidderIdGet(bidderId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSalesByBidderIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer bidderId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetSalesByBidderIdGet(bidderId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSalesByBidderIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *bidderId = 56; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Gets sales by Bidder Id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BuyerAgent, Bidder)
[apiInstance apiSaleGetSalesByBidderIdGetWith:bidderId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'bidderId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetSalesByBidderIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var bidderId = 56;  // Integer |  (optional) 

            try
            {
                // Gets sales by Bidder Id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BuyerAgent, Bidder)
                apiInstance.apiSaleGetSalesByBidderIdGet(bidderId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetSalesByBidderIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$bidderId = 56; // Integer | 

try {
    $api_instance->apiSaleGetSalesByBidderIdGet($bidderId);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetSalesByBidderIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $bidderId = 56; # Integer | 

eval { 
    $api_instance->apiSaleGetSalesByBidderIdGet(bidderId => $bidderId);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetSalesByBidderIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
bidderId = 56 # Integer |  (optional)

try: 
    # Gets sales by Bidder Id (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BuyerAgent, Bidder)
    api_instance.api_sale_get_sales_by_bidder_id_get(bidderId=bidderId)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetSalesByBidderIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
BidderId
Integer (int32)

Responses

Status: 200 - Success


apiSaleGetSalesGet

Get sales for different ids (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/GetSales

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetSales?AgencyId=&BranchId=&AgentId=&Role=&Status=&Date=&Description="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        String agencyId = agencyId_example; // String | 
        String branchId = branchId_example; // String | 
        String agentId = agentId_example; // String | 
        String role = role_example; // String | 
        String status = status_example; // String | 
        String date = date_example; // String | 
        String description = description_example; // String | 
        try {
            apiInstance.apiSaleGetSalesGet(agencyId, branchId, agentId, role, status, date, description);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSalesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        String agencyId = agencyId_example; // String | 
        String branchId = branchId_example; // String | 
        String agentId = agentId_example; // String | 
        String role = role_example; // String | 
        String status = status_example; // String | 
        String date = date_example; // String | 
        String description = description_example; // String | 
        try {
            apiInstance.apiSaleGetSalesGet(agencyId, branchId, agentId, role, status, date, description);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSalesGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *agencyId = agencyId_example; //  (optional)
String *branchId = branchId_example; //  (optional)
String *agentId = agentId_example; //  (optional)
String *role = role_example; //  (optional)
String *status = status_example; //  (optional)
String *date = date_example; //  (optional)
String *description = description_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get sales for different ids (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleGetSalesGetWith:agencyId
    branchId:branchId
    agentId:agentId
    role:role
    status:status
    date:date
    description:description
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'agencyId': agencyId_example, // {{String}} 
  'branchId': branchId_example, // {{String}} 
  'agentId': agentId_example, // {{String}} 
  'role': role_example, // {{String}} 
  'status': status_example, // {{String}} 
  'date': date_example, // {{String}} 
  'description': description_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetSalesGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var agencyId = agencyId_example;  // String |  (optional) 
            var branchId = branchId_example;  // String |  (optional) 
            var agentId = agentId_example;  // String |  (optional) 
            var role = role_example;  // String |  (optional) 
            var status = status_example;  // String |  (optional) 
            var date = date_example;  // String |  (optional) 
            var description = description_example;  // String |  (optional) 

            try
            {
                // Get sales for different ids (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleGetSalesGet(agencyId, branchId, agentId, role, status, date, description);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetSalesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$agencyId = agencyId_example; // String | 
$branchId = branchId_example; // String | 
$agentId = agentId_example; // String | 
$role = role_example; // String | 
$status = status_example; // String | 
$date = date_example; // String | 
$description = description_example; // String | 

try {
    $api_instance->apiSaleGetSalesGet($agencyId, $branchId, $agentId, $role, $status, $date, $description);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetSalesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $agencyId = agencyId_example; # String | 
my $branchId = branchId_example; # String | 
my $agentId = agentId_example; # String | 
my $role = role_example; # String | 
my $status = status_example; # String | 
my $date = date_example; # String | 
my $description = description_example; # String | 

eval { 
    $api_instance->apiSaleGetSalesGet(agencyId => $agencyId, branchId => $branchId, agentId => $agentId, role => $role, status => $status, date => $date, description => $description);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetSalesGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
agencyId = agencyId_example # String |  (optional)
branchId = branchId_example # String |  (optional)
agentId = agentId_example # String |  (optional)
role = role_example # String |  (optional)
status = status_example # String |  (optional)
date = date_example # String |  (optional)
description = description_example # String |  (optional)

try: 
    # Get sales for different ids (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_get_sales_get(agencyId=agencyId, branchId=branchId, agentId=agentId, role=role, status=status, date=date, description=description)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetSalesGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
String
BranchId
String
AgentId
String
Role
String
Status
String
Date
String
Description
String

Responses

Status: 200 - Success


apiSaleGetSalesWithAgencyRefIdGet

Get sale with agency reference id and status. Returns cached data


/api/Sale/GetSalesWithAgencyRefId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetSalesWithAgencyRefId?AgencyRefId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        String agencyRefId = agencyRefId_example; // String | 
        try {
            apiInstance.apiSaleGetSalesWithAgencyRefIdGet(agencyRefId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSalesWithAgencyRefIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        String agencyRefId = agencyRefId_example; // String | 
        try {
            apiInstance.apiSaleGetSalesWithAgencyRefIdGet(agencyRefId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSalesWithAgencyRefIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *agencyRefId = agencyRefId_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get sale with agency reference id and status. Returns cached data
[apiInstance apiSaleGetSalesWithAgencyRefIdGetWith:agencyRefId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'agencyRefId': agencyRefId_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetSalesWithAgencyRefIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var agencyRefId = agencyRefId_example;  // String |  (optional) 

            try
            {
                // Get sale with agency reference id and status. Returns cached data
                apiInstance.apiSaleGetSalesWithAgencyRefIdGet(agencyRefId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetSalesWithAgencyRefIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$agencyRefId = agencyRefId_example; // String | 

try {
    $api_instance->apiSaleGetSalesWithAgencyRefIdGet($agencyRefId);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetSalesWithAgencyRefIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $agencyRefId = agencyRefId_example; # String | 

eval { 
    $api_instance->apiSaleGetSalesWithAgencyRefIdGet(agencyRefId => $agencyRefId);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetSalesWithAgencyRefIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
agencyRefId = agencyRefId_example # String |  (optional)

try: 
    # Get sale with agency reference id and status. Returns cached data
    api_instance.api_sale_get_sales_with_agency_ref_id_get(agencyRefId=agencyRefId)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetSalesWithAgencyRefIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyRefId
String

Responses

Status: 200 - Success


apiSaleGetSecondarySalePropertyImagesGet

Get secondary sale property images (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/GetSecondarySalePropertyImages

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/GetSecondarySalePropertyImages?SalePropertyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer salePropertyId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetSecondarySalePropertyImagesGet(salePropertyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSecondarySalePropertyImagesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer salePropertyId = 56; // Integer | 
        try {
            apiInstance.apiSaleGetSecondarySalePropertyImagesGet(salePropertyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleGetSecondarySalePropertyImagesGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *salePropertyId = 56; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Get secondary sale property images (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleGetSecondarySalePropertyImagesGetWith:salePropertyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'salePropertyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleGetSecondarySalePropertyImagesGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var salePropertyId = 56;  // Integer |  (optional) 

            try
            {
                // Get secondary sale property images (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleGetSecondarySalePropertyImagesGet(salePropertyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleGetSecondarySalePropertyImagesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$salePropertyId = 56; // Integer | 

try {
    $api_instance->apiSaleGetSecondarySalePropertyImagesGet($salePropertyId);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleGetSecondarySalePropertyImagesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $salePropertyId = 56; # Integer | 

eval { 
    $api_instance->apiSaleGetSecondarySalePropertyImagesGet(salePropertyId => $salePropertyId);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleGetSecondarySalePropertyImagesGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
salePropertyId = 56 # Integer |  (optional)

try: 
    # Get secondary sale property images (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_get_secondary_sale_property_images_get(salePropertyId=salePropertyId)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleGetSecondarySalePropertyImagesGet: %s\n" % e)

Parameters

Query parameters
Name Description
SalePropertyId
Integer (int32)

Responses

Status: 200 - Success


apiSaleReOpenSalePost

Re open sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/ReOpenSale

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/ReOpenSale?SaleId=&SaleStatus="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        Integer saleId = 56; // Integer | 
        String saleStatus = saleStatus_example; // String | 
        try {
            apiInstance.apiSaleReOpenSalePost(saleId, saleStatus);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleReOpenSalePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        Integer saleId = 56; // Integer | 
        String saleStatus = saleStatus_example; // String | 
        try {
            apiInstance.apiSaleReOpenSalePost(saleId, saleStatus);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleReOpenSalePost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *saleId = 56; //  (optional)
String *saleStatus = saleStatus_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Re open sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleReOpenSalePostWith:saleId
    saleStatus:saleStatus
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'saleId': 56, // {{Integer}} 
  'saleStatus': saleStatus_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleReOpenSalePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var saleId = 56;  // Integer |  (optional) 
            var saleStatus = saleStatus_example;  // String |  (optional) 

            try
            {
                // Re open sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleReOpenSalePost(saleId, saleStatus);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleReOpenSalePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$saleId = 56; // Integer | 
$saleStatus = saleStatus_example; // String | 

try {
    $api_instance->apiSaleReOpenSalePost($saleId, $saleStatus);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleReOpenSalePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $saleId = 56; # Integer | 
my $saleStatus = saleStatus_example; # String | 

eval { 
    $api_instance->apiSaleReOpenSalePost(saleId => $saleId, saleStatus => $saleStatus);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleReOpenSalePost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
saleId = 56 # Integer |  (optional)
saleStatus = saleStatus_example # String |  (optional)

try: 
    # Re open sale (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_re_open_sale_post(saleId=saleId, saleStatus=saleStatus)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleReOpenSalePost: %s\n" % e)

Parameters

Query parameters
Name Description
SaleId
Integer (int32)
SaleStatus
String

Responses

Status: 200 - Success


apiSaleSaleFilterGet

Search filter for sale listings (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/SaleFilter

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Sale/SaleFilter?Status=&NoOfBeds=&PropertyId=&AgencyId=&BranchId=&AgentId=&Role="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        String status = status_example; // String | 
        String noOfBeds = noOfBeds_example; // String | 
        String propertyId = propertyId_example; // String | 
        String agencyId = agencyId_example; // String | 
        String branchId = branchId_example; // String | 
        String agentId = agentId_example; // String | 
        String role = role_example; // String | 
        try {
            apiInstance.apiSaleSaleFilterGet(status, noOfBeds, propertyId, agencyId, branchId, agentId, role);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleSaleFilterGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        String status = status_example; // String | 
        String noOfBeds = noOfBeds_example; // String | 
        String propertyId = propertyId_example; // String | 
        String agencyId = agencyId_example; // String | 
        String branchId = branchId_example; // String | 
        String agentId = agentId_example; // String | 
        String role = role_example; // String | 
        try {
            apiInstance.apiSaleSaleFilterGet(status, noOfBeds, propertyId, agencyId, branchId, agentId, role);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleSaleFilterGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *status = status_example; //  (optional)
String *noOfBeds = noOfBeds_example; //  (optional)
String *propertyId = propertyId_example; //  (optional)
String *agencyId = agencyId_example; //  (optional)
String *branchId = branchId_example; //  (optional)
String *agentId = agentId_example; //  (optional)
String *role = role_example; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Search filter for sale listings (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleSaleFilterGetWith:status
    noOfBeds:noOfBeds
    propertyId:propertyId
    agencyId:agencyId
    branchId:branchId
    agentId:agentId
    role:role
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'status': status_example, // {{String}} 
  'noOfBeds': noOfBeds_example, // {{String}} 
  'propertyId': propertyId_example, // {{String}} 
  'agencyId': agencyId_example, // {{String}} 
  'branchId': branchId_example, // {{String}} 
  'agentId': agentId_example, // {{String}} 
  'role': role_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleSaleFilterGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var status = status_example;  // String |  (optional) 
            var noOfBeds = noOfBeds_example;  // String |  (optional) 
            var propertyId = propertyId_example;  // String |  (optional) 
            var agencyId = agencyId_example;  // String |  (optional) 
            var branchId = branchId_example;  // String |  (optional) 
            var agentId = agentId_example;  // String |  (optional) 
            var role = role_example;  // String |  (optional) 

            try
            {
                // Search filter for sale listings (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleSaleFilterGet(status, noOfBeds, propertyId, agencyId, branchId, agentId, role);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleSaleFilterGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$status = status_example; // String | 
$noOfBeds = noOfBeds_example; // String | 
$propertyId = propertyId_example; // String | 
$agencyId = agencyId_example; // String | 
$branchId = branchId_example; // String | 
$agentId = agentId_example; // String | 
$role = role_example; // String | 

try {
    $api_instance->apiSaleSaleFilterGet($status, $noOfBeds, $propertyId, $agencyId, $branchId, $agentId, $role);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleSaleFilterGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $status = status_example; # String | 
my $noOfBeds = noOfBeds_example; # String | 
my $propertyId = propertyId_example; # String | 
my $agencyId = agencyId_example; # String | 
my $branchId = branchId_example; # String | 
my $agentId = agentId_example; # String | 
my $role = role_example; # String | 

eval { 
    $api_instance->apiSaleSaleFilterGet(status => $status, noOfBeds => $noOfBeds, propertyId => $propertyId, agencyId => $agencyId, branchId => $branchId, agentId => $agentId, role => $role);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleSaleFilterGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
status = status_example # String |  (optional)
noOfBeds = noOfBeds_example # String |  (optional)
propertyId = propertyId_example # String |  (optional)
agencyId = agencyId_example # String |  (optional)
branchId = branchId_example # String |  (optional)
agentId = agentId_example # String |  (optional)
role = role_example # String |  (optional)

try: 
    # Search filter for sale listings (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_sale_filter_get(status=status, noOfBeds=noOfBeds, propertyId=propertyId, agencyId=agencyId, branchId=branchId, agentId=agentId, role=role)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleSaleFilterGet: %s\n" % e)

Parameters

Query parameters
Name Description
Status
String
NoOfBeds
String
PropertyId
String
AgencyId
String
BranchId
String
AgentId
String
Role
String

Responses

Status: 200 - Success


apiSaleSendWatchListMailPost

Sends an email to the watchlist (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)


/api/Sale/SendWatchListMail

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/Sale/SendWatchListMail"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SaleApi;

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

public class SaleApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.EmailTemplate body = ; // BeagelManagers.Models.EmailTemplate | 
        try {
            apiInstance.apiSaleSendWatchListMailPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleSendWatchListMailPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SaleApi;

public class SaleApiExample {

    public static void main(String[] args) {
        SaleApi apiInstance = new SaleApi();
        BeagelManagers.Models.EmailTemplate body = ; // BeagelManagers.Models.EmailTemplate | 
        try {
            apiInstance.apiSaleSendWatchListMailPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SaleApi#apiSaleSendWatchListMailPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.EmailTemplate *body = ; //  (optional)

SaleApi *apiInstance = [[SaleApi alloc] init];

// Sends an email to the watchlist (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
[apiInstance apiSaleSendWatchListMailPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SaleApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.EmailTemplate}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSaleSendWatchListMailPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SaleApi();
            var body = new BeagelManagers.Models.EmailTemplate(); // BeagelManagers.Models.EmailTemplate |  (optional) 

            try
            {
                // Sends an email to the watchlist (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
                apiInstance.apiSaleSendWatchListMailPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SaleApi.apiSaleSendWatchListMailPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSaleApi();
$body = ; // BeagelManagers.Models.EmailTemplate | 

try {
    $api_instance->apiSaleSendWatchListMailPost($body);
} catch (Exception $e) {
    echo 'Exception when calling SaleApi->apiSaleSendWatchListMailPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SaleApi;


my $api_instance = WWW::SwaggerClient::SaleApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.EmailTemplate->new(); # BeagelManagers.Models.EmailTemplate | 

eval { 
    $api_instance->apiSaleSendWatchListMailPost(body => $body);
};
if ($@) {
    warn "Exception when calling SaleApi->apiSaleSendWatchListMailPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SaleApi()
body =  # BeagelManagers.Models.EmailTemplate |  (optional)

try: 
    # Sends an email to the watchlist (Roles: SuperAdmin, Admin, GroupUser, AgencyUser, BranchUser, Agent)
    api_instance.api_sale_send_watch_list_mail_post(body=body)
except ApiException as e:
    print("Exception when calling SaleApi->apiSaleSendWatchListMailPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


SendGridDomain

apiSendGridDomainGetDomainGet


/api/SendGridDomain/Get/{domain}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/SendGridDomain/Get/{domain}?agencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SendGridDomainApi;

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

public class SendGridDomainApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SendGridDomainApi apiInstance = new SendGridDomainApi();
        String domain = domain_example; // String | 
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiSendGridDomainGetDomainGet(domain, agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SendGridDomainApi#apiSendGridDomainGetDomainGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SendGridDomainApi;

public class SendGridDomainApiExample {

    public static void main(String[] args) {
        SendGridDomainApi apiInstance = new SendGridDomainApi();
        String domain = domain_example; // String | 
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiSendGridDomainGetDomainGet(domain, agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SendGridDomainApi#apiSendGridDomainGetDomainGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *domain = domain_example; // 
Integer *agencyId = 56; //  (optional) (default to 0)

SendGridDomainApi *apiInstance = [[SendGridDomainApi alloc] init];

[apiInstance apiSendGridDomainGetDomainGetWith:domain
    agencyId:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SendGridDomainApi()
var domain = domain_example; // {{String}} 
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSendGridDomainGetDomainGet(domain, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SendGridDomainApi();
            var domain = domain_example;  // String | 
            var agencyId = 56;  // Integer |  (optional)  (default to 0)

            try
            {
                apiInstance.apiSendGridDomainGetDomainGet(domain, agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SendGridDomainApi.apiSendGridDomainGetDomainGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSendGridDomainApi();
$domain = domain_example; // String | 
$agencyId = 56; // Integer | 

try {
    $api_instance->apiSendGridDomainGetDomainGet($domain, $agencyId);
} catch (Exception $e) {
    echo 'Exception when calling SendGridDomainApi->apiSendGridDomainGetDomainGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SendGridDomainApi;


my $api_instance = WWW::SwaggerClient::SendGridDomainApi->new();
my $domain = domain_example; # String | 
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiSendGridDomainGetDomainGet(domain => $domain, agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling SendGridDomainApi->apiSendGridDomainGetDomainGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SendGridDomainApi()
domain = domain_example # String | 
agencyId = 56 # Integer |  (optional) (default to 0)

try: 
    api_instance.api_send_grid_domain_get_domain_get(domain, agencyId=agencyId)
except ApiException as e:
    print("Exception when calling SendGridDomainApi->apiSendGridDomainGetDomainGet: %s\n" % e)

Parameters

Path parameters
Name Description
domain*
String
Required
Query parameters
Name Description
agencyId
Integer (int32)

Responses

Status: 200 - Success


apiSendGridDomainOtherDomainsGet


/api/SendGridDomain/OtherDomains

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/SendGridDomain/OtherDomains?domain=&agencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SendGridDomainApi;

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

public class SendGridDomainApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SendGridDomainApi apiInstance = new SendGridDomainApi();
        String domain = domain_example; // String | 
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiSendGridDomainOtherDomainsGet(domain, agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SendGridDomainApi#apiSendGridDomainOtherDomainsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SendGridDomainApi;

public class SendGridDomainApiExample {

    public static void main(String[] args) {
        SendGridDomainApi apiInstance = new SendGridDomainApi();
        String domain = domain_example; // String | 
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiSendGridDomainOtherDomainsGet(domain, agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling SendGridDomainApi#apiSendGridDomainOtherDomainsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *domain = domain_example; //  (optional)
Integer *agencyId = 56; //  (optional)

SendGridDomainApi *apiInstance = [[SendGridDomainApi alloc] init];

[apiInstance apiSendGridDomainOtherDomainsGetWith:domain
    agencyId:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SendGridDomainApi()
var opts = { 
  'domain': domain_example, // {{String}} 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSendGridDomainOtherDomainsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SendGridDomainApi();
            var domain = domain_example;  // String |  (optional) 
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                apiInstance.apiSendGridDomainOtherDomainsGet(domain, agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SendGridDomainApi.apiSendGridDomainOtherDomainsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSendGridDomainApi();
$domain = domain_example; // String | 
$agencyId = 56; // Integer | 

try {
    $api_instance->apiSendGridDomainOtherDomainsGet($domain, $agencyId);
} catch (Exception $e) {
    echo 'Exception when calling SendGridDomainApi->apiSendGridDomainOtherDomainsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SendGridDomainApi;


my $api_instance = WWW::SwaggerClient::SendGridDomainApi->new();
my $domain = domain_example; # String | 
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiSendGridDomainOtherDomainsGet(domain => $domain, agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling SendGridDomainApi->apiSendGridDomainOtherDomainsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SendGridDomainApi()
domain = domain_example # String |  (optional)
agencyId = 56 # Integer |  (optional)

try: 
    api_instance.api_send_grid_domain_other_domains_get(domain=domain, agencyId=agencyId)
except ApiException as e:
    print("Exception when calling SendGridDomainApi->apiSendGridDomainOtherDomainsGet: %s\n" % e)

Parameters

Query parameters
Name Description
domain
String
agencyId
Integer (int32)

Responses

Status: 200 - Success


apiSendGridDomainRegisterPost


/api/SendGridDomain/Register

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/SendGridDomain/Register"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SendGridDomainApi;

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

public class SendGridDomainApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SendGridDomainApi apiInstance = new SendGridDomainApi();
        BeagelEnterprise.Models.DomainRequestDto body = ; // BeagelEnterprise.Models.DomainRequestDto | 
        try {
            apiInstance.apiSendGridDomainRegisterPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SendGridDomainApi#apiSendGridDomainRegisterPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SendGridDomainApi;

public class SendGridDomainApiExample {

    public static void main(String[] args) {
        SendGridDomainApi apiInstance = new SendGridDomainApi();
        BeagelEnterprise.Models.DomainRequestDto body = ; // BeagelEnterprise.Models.DomainRequestDto | 
        try {
            apiInstance.apiSendGridDomainRegisterPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SendGridDomainApi#apiSendGridDomainRegisterPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.DomainRequestDto *body = ; //  (optional)

SendGridDomainApi *apiInstance = [[SendGridDomainApi alloc] init];

[apiInstance apiSendGridDomainRegisterPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SendGridDomainApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.DomainRequestDto}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSendGridDomainRegisterPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SendGridDomainApi();
            var body = new BeagelEnterprise.Models.DomainRequestDto(); // BeagelEnterprise.Models.DomainRequestDto |  (optional) 

            try
            {
                apiInstance.apiSendGridDomainRegisterPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SendGridDomainApi.apiSendGridDomainRegisterPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSendGridDomainApi();
$body = ; // BeagelEnterprise.Models.DomainRequestDto | 

try {
    $api_instance->apiSendGridDomainRegisterPost($body);
} catch (Exception $e) {
    echo 'Exception when calling SendGridDomainApi->apiSendGridDomainRegisterPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SendGridDomainApi;


my $api_instance = WWW::SwaggerClient::SendGridDomainApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.DomainRequestDto->new(); # BeagelEnterprise.Models.DomainRequestDto | 

eval { 
    $api_instance->apiSendGridDomainRegisterPost(body => $body);
};
if ($@) {
    warn "Exception when calling SendGridDomainApi->apiSendGridDomainRegisterPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SendGridDomainApi()
body =  # BeagelEnterprise.Models.DomainRequestDto |  (optional)

try: 
    api_instance.api_send_grid_domain_register_post(body=body)
except ApiException as e:
    print("Exception when calling SendGridDomainApi->apiSendGridDomainRegisterPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiSendGridDomainRemoveDomainIdDelete


/api/SendGridDomain/RemoveDomain/{id}

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/SendGridDomain/RemoveDomain/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SendGridDomainApi;

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

public class SendGridDomainApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SendGridDomainApi apiInstance = new SendGridDomainApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiSendGridDomainRemoveDomainIdDelete(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling SendGridDomainApi#apiSendGridDomainRemoveDomainIdDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SendGridDomainApi;

public class SendGridDomainApiExample {

    public static void main(String[] args) {
        SendGridDomainApi apiInstance = new SendGridDomainApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiSendGridDomainRemoveDomainIdDelete(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling SendGridDomainApi#apiSendGridDomainRemoveDomainIdDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; // 

SendGridDomainApi *apiInstance = [[SendGridDomainApi alloc] init];

[apiInstance apiSendGridDomainRemoveDomainIdDeleteWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SendGridDomainApi()
var id = 56; // {{Integer}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSendGridDomainRemoveDomainIdDelete(id, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SendGridDomainApi();
            var id = 56;  // Integer | 

            try
            {
                apiInstance.apiSendGridDomainRemoveDomainIdDelete(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SendGridDomainApi.apiSendGridDomainRemoveDomainIdDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSendGridDomainApi();
$id = 56; // Integer | 

try {
    $api_instance->apiSendGridDomainRemoveDomainIdDelete($id);
} catch (Exception $e) {
    echo 'Exception when calling SendGridDomainApi->apiSendGridDomainRemoveDomainIdDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SendGridDomainApi;


my $api_instance = WWW::SwaggerClient::SendGridDomainApi->new();
my $id = 56; # Integer | 

eval { 
    $api_instance->apiSendGridDomainRemoveDomainIdDelete(id => $id);
};
if ($@) {
    warn "Exception when calling SendGridDomainApi->apiSendGridDomainRemoveDomainIdDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SendGridDomainApi()
id = 56 # Integer | 

try: 
    api_instance.api_send_grid_domain_remove_domain_id_delete(id)
except ApiException as e:
    print("Exception when calling SendGridDomainApi->apiSendGridDomainRemoveDomainIdDelete: %s\n" % e)

Parameters

Path parameters
Name Description
id*
Integer (int32)
Required

Responses

Status: 200 - Success


apiSendGridDomainSendInstructionsPost


/api/SendGridDomain/SendInstructions

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/SendGridDomain/SendInstructions"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SendGridDomainApi;

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

public class SendGridDomainApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SendGridDomainApi apiInstance = new SendGridDomainApi();
        BeagelEnterprise.Models.InstructionDto body = ; // BeagelEnterprise.Models.InstructionDto | 
        try {
            apiInstance.apiSendGridDomainSendInstructionsPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SendGridDomainApi#apiSendGridDomainSendInstructionsPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SendGridDomainApi;

public class SendGridDomainApiExample {

    public static void main(String[] args) {
        SendGridDomainApi apiInstance = new SendGridDomainApi();
        BeagelEnterprise.Models.InstructionDto body = ; // BeagelEnterprise.Models.InstructionDto | 
        try {
            apiInstance.apiSendGridDomainSendInstructionsPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SendGridDomainApi#apiSendGridDomainSendInstructionsPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.InstructionDto *body = ; //  (optional)

SendGridDomainApi *apiInstance = [[SendGridDomainApi alloc] init];

[apiInstance apiSendGridDomainSendInstructionsPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SendGridDomainApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.InstructionDto}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSendGridDomainSendInstructionsPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SendGridDomainApi();
            var body = new BeagelEnterprise.Models.InstructionDto(); // BeagelEnterprise.Models.InstructionDto |  (optional) 

            try
            {
                apiInstance.apiSendGridDomainSendInstructionsPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SendGridDomainApi.apiSendGridDomainSendInstructionsPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSendGridDomainApi();
$body = ; // BeagelEnterprise.Models.InstructionDto | 

try {
    $api_instance->apiSendGridDomainSendInstructionsPost($body);
} catch (Exception $e) {
    echo 'Exception when calling SendGridDomainApi->apiSendGridDomainSendInstructionsPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SendGridDomainApi;


my $api_instance = WWW::SwaggerClient::SendGridDomainApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.InstructionDto->new(); # BeagelEnterprise.Models.InstructionDto | 

eval { 
    $api_instance->apiSendGridDomainSendInstructionsPost(body => $body);
};
if ($@) {
    warn "Exception when calling SendGridDomainApi->apiSendGridDomainSendInstructionsPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SendGridDomainApi()
body =  # BeagelEnterprise.Models.InstructionDto |  (optional)

try: 
    api_instance.api_send_grid_domain_send_instructions_post(body=body)
except ApiException as e:
    print("Exception when calling SendGridDomainApi->apiSendGridDomainSendInstructionsPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiSendGridDomainValidatePost


/api/SendGridDomain/Validate

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/SendGridDomain/Validate"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SendGridDomainApi;

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

public class SendGridDomainApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        SendGridDomainApi apiInstance = new SendGridDomainApi();
        BeagelEnterprise.Models.DomainRequestDto body = ; // BeagelEnterprise.Models.DomainRequestDto | 
        try {
            apiInstance.apiSendGridDomainValidatePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SendGridDomainApi#apiSendGridDomainValidatePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SendGridDomainApi;

public class SendGridDomainApiExample {

    public static void main(String[] args) {
        SendGridDomainApi apiInstance = new SendGridDomainApi();
        BeagelEnterprise.Models.DomainRequestDto body = ; // BeagelEnterprise.Models.DomainRequestDto | 
        try {
            apiInstance.apiSendGridDomainValidatePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling SendGridDomainApi#apiSendGridDomainValidatePost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.DomainRequestDto *body = ; //  (optional)

SendGridDomainApi *apiInstance = [[SendGridDomainApi alloc] init];

[apiInstance apiSendGridDomainValidatePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.SendGridDomainApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.DomainRequestDto}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiSendGridDomainValidatePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new SendGridDomainApi();
            var body = new BeagelEnterprise.Models.DomainRequestDto(); // BeagelEnterprise.Models.DomainRequestDto |  (optional) 

            try
            {
                apiInstance.apiSendGridDomainValidatePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SendGridDomainApi.apiSendGridDomainValidatePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiSendGridDomainApi();
$body = ; // BeagelEnterprise.Models.DomainRequestDto | 

try {
    $api_instance->apiSendGridDomainValidatePost($body);
} catch (Exception $e) {
    echo 'Exception when calling SendGridDomainApi->apiSendGridDomainValidatePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SendGridDomainApi;


my $api_instance = WWW::SwaggerClient::SendGridDomainApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.DomainRequestDto->new(); # BeagelEnterprise.Models.DomainRequestDto | 

eval { 
    $api_instance->apiSendGridDomainValidatePost(body => $body);
};
if ($@) {
    warn "Exception when calling SendGridDomainApi->apiSendGridDomainValidatePost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.SendGridDomainApi()
body =  # BeagelEnterprise.Models.DomainRequestDto |  (optional)

try: 
    api_instance.api_send_grid_domain_validate_post(body=body)
except ApiException as e:
    print("Exception when calling SendGridDomainApi->apiSendGridDomainValidatePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


Twillio

apiTwillioPurchaseUserIdNumberPost


/api/Twillio/Purchase/{userId}/{number}

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Twillio/Purchase/{userId}/{number}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.TwillioApi;

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

public class TwillioApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        TwillioApi apiInstance = new TwillioApi();
        String userId = userId_example; // String | 
        String number = number_example; // String | 
        try {
            apiInstance.apiTwillioPurchaseUserIdNumberPost(userId, number);
        } catch (ApiException e) {
            System.err.println("Exception when calling TwillioApi#apiTwillioPurchaseUserIdNumberPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.TwillioApi;

public class TwillioApiExample {

    public static void main(String[] args) {
        TwillioApi apiInstance = new TwillioApi();
        String userId = userId_example; // String | 
        String number = number_example; // String | 
        try {
            apiInstance.apiTwillioPurchaseUserIdNumberPost(userId, number);
        } catch (ApiException e) {
            System.err.println("Exception when calling TwillioApi#apiTwillioPurchaseUserIdNumberPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *userId = userId_example; // 
String *number = number_example; // 

TwillioApi *apiInstance = [[TwillioApi alloc] init];

[apiInstance apiTwillioPurchaseUserIdNumberPostWith:userId
    number:number
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.TwillioApi()
var userId = userId_example; // {{String}} 
var number = number_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiTwillioPurchaseUserIdNumberPost(userId, number, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new TwillioApi();
            var userId = userId_example;  // String | 
            var number = number_example;  // String | 

            try
            {
                apiInstance.apiTwillioPurchaseUserIdNumberPost(userId, number);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TwillioApi.apiTwillioPurchaseUserIdNumberPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiTwillioApi();
$userId = userId_example; // String | 
$number = number_example; // String | 

try {
    $api_instance->apiTwillioPurchaseUserIdNumberPost($userId, $number);
} catch (Exception $e) {
    echo 'Exception when calling TwillioApi->apiTwillioPurchaseUserIdNumberPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::TwillioApi;


my $api_instance = WWW::SwaggerClient::TwillioApi->new();
my $userId = userId_example; # String | 
my $number = number_example; # String | 

eval { 
    $api_instance->apiTwillioPurchaseUserIdNumberPost(userId => $userId, number => $number);
};
if ($@) {
    warn "Exception when calling TwillioApi->apiTwillioPurchaseUserIdNumberPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.TwillioApi()
userId = userId_example # String | 
number = number_example # String | 

try: 
    api_instance.api_twillio_purchase_user_id_number_post(userId, number)
except ApiException as e:
    print("Exception when calling TwillioApi->apiTwillioPurchaseUserIdNumberPost: %s\n" % e)

Parameters

Path parameters
Name Description
userId*
String
Required
number*
String
Required

Responses

Status: 200 - Success


apiTwillioSearchGet


/api/Twillio/Search

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Twillio/Search?filter="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.TwillioApi;

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

public class TwillioApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        TwillioApi apiInstance = new TwillioApi();
        String filter = filter_example; // String | 
        try {
            apiInstance.apiTwillioSearchGet(filter);
        } catch (ApiException e) {
            System.err.println("Exception when calling TwillioApi#apiTwillioSearchGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.TwillioApi;

public class TwillioApiExample {

    public static void main(String[] args) {
        TwillioApi apiInstance = new TwillioApi();
        String filter = filter_example; // String | 
        try {
            apiInstance.apiTwillioSearchGet(filter);
        } catch (ApiException e) {
            System.err.println("Exception when calling TwillioApi#apiTwillioSearchGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *filter = filter_example; //  (optional)

TwillioApi *apiInstance = [[TwillioApi alloc] init];

[apiInstance apiTwillioSearchGetWith:filter
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.TwillioApi()
var opts = { 
  'filter': filter_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiTwillioSearchGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new TwillioApi();
            var filter = filter_example;  // String |  (optional) 

            try
            {
                apiInstance.apiTwillioSearchGet(filter);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TwillioApi.apiTwillioSearchGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiTwillioApi();
$filter = filter_example; // String | 

try {
    $api_instance->apiTwillioSearchGet($filter);
} catch (Exception $e) {
    echo 'Exception when calling TwillioApi->apiTwillioSearchGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::TwillioApi;


my $api_instance = WWW::SwaggerClient::TwillioApi->new();
my $filter = filter_example; # String | 

eval { 
    $api_instance->apiTwillioSearchGet(filter => $filter);
};
if ($@) {
    warn "Exception when calling TwillioApi->apiTwillioSearchGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.TwillioApi()
filter = filter_example # String |  (optional)

try: 
    api_instance.api_twillio_search_get(filter=filter)
except ApiException as e:
    print("Exception when calling TwillioApi->apiTwillioSearchGet: %s\n" % e)

Parameters

Query parameters
Name Description
filter
String

Responses

Status: 200 - Success


apiTwillioVerifyPhoneNoGet


/api/Twillio/Verify/{phoneNo}

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/Twillio/Verify/{phoneNo}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.TwillioApi;

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

public class TwillioApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        TwillioApi apiInstance = new TwillioApi();
        String phoneNo = phoneNo_example; // String | 
        try {
            apiInstance.apiTwillioVerifyPhoneNoGet(phoneNo);
        } catch (ApiException e) {
            System.err.println("Exception when calling TwillioApi#apiTwillioVerifyPhoneNoGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.TwillioApi;

public class TwillioApiExample {

    public static void main(String[] args) {
        TwillioApi apiInstance = new TwillioApi();
        String phoneNo = phoneNo_example; // String | 
        try {
            apiInstance.apiTwillioVerifyPhoneNoGet(phoneNo);
        } catch (ApiException e) {
            System.err.println("Exception when calling TwillioApi#apiTwillioVerifyPhoneNoGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *phoneNo = phoneNo_example; // 

TwillioApi *apiInstance = [[TwillioApi alloc] init];

[apiInstance apiTwillioVerifyPhoneNoGetWith:phoneNo
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.TwillioApi()
var phoneNo = phoneNo_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiTwillioVerifyPhoneNoGet(phoneNo, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new TwillioApi();
            var phoneNo = phoneNo_example;  // String | 

            try
            {
                apiInstance.apiTwillioVerifyPhoneNoGet(phoneNo);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TwillioApi.apiTwillioVerifyPhoneNoGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiTwillioApi();
$phoneNo = phoneNo_example; // String | 

try {
    $api_instance->apiTwillioVerifyPhoneNoGet($phoneNo);
} catch (Exception $e) {
    echo 'Exception when calling TwillioApi->apiTwillioVerifyPhoneNoGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::TwillioApi;


my $api_instance = WWW::SwaggerClient::TwillioApi->new();
my $phoneNo = phoneNo_example; # String | 

eval { 
    $api_instance->apiTwillioVerifyPhoneNoGet(phoneNo => $phoneNo);
};
if ($@) {
    warn "Exception when calling TwillioApi->apiTwillioVerifyPhoneNoGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.TwillioApi()
phoneNo = phoneNo_example # String | 

try: 
    api_instance.api_twillio_verify_phone_no_get(phoneNo)
except ApiException as e:
    print("Exception when calling TwillioApi->apiTwillioVerifyPhoneNoGet: %s\n" % e)

Parameters

Path parameters
Name Description
phoneNo*
String
Required

Responses

Status: 200 - Success


User

apiUserAddUpdateAdminPost

Add Updates admin user


/api/User/AddUpdateAdmin

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/User/AddUpdateAdmin"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        BeagelEnterprise.Models.UserDto body = ; // BeagelEnterprise.Models.UserDto | 
        try {
            apiInstance.apiUserAddUpdateAdminPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateAdminPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        BeagelEnterprise.Models.UserDto body = ; // BeagelEnterprise.Models.UserDto | 
        try {
            apiInstance.apiUserAddUpdateAdminPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateAdminPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.UserDto *body = ; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Add Updates admin user
[apiInstance apiUserAddUpdateAdminPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.UserDto}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserAddUpdateAdminPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var body = new BeagelEnterprise.Models.UserDto(); // BeagelEnterprise.Models.UserDto |  (optional) 

            try
            {
                // Add Updates admin user
                apiInstance.apiUserAddUpdateAdminPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserAddUpdateAdminPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$body = ; // BeagelEnterprise.Models.UserDto | 

try {
    $api_instance->apiUserAddUpdateAdminPost($body);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserAddUpdateAdminPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.UserDto->new(); # BeagelEnterprise.Models.UserDto | 

eval { 
    $api_instance->apiUserAddUpdateAdminPost(body => $body);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserAddUpdateAdminPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
body =  # BeagelEnterprise.Models.UserDto |  (optional)

try: 
    # Add Updates admin user
    api_instance.api_user_add_update_admin_post(body=body)
except ApiException as e:
    print("Exception when calling UserApi->apiUserAddUpdateAdminPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiUserAddUpdateAgencyUserPost

Adds or updates the agency user (Roles: SuperAdmin, Admin, GroupUser)


/api/User/AddUpdateAgencyUser

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/User/AddUpdateAgencyUser"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        BeagelEnterprise.Models.AgencyUserDto body = ; // BeagelEnterprise.Models.AgencyUserDto | BeagelManagers.Models.AgencyUser
        try {
            apiInstance.apiUserAddUpdateAgencyUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateAgencyUserPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        BeagelEnterprise.Models.AgencyUserDto body = ; // BeagelEnterprise.Models.AgencyUserDto | BeagelManagers.Models.AgencyUser
        try {
            apiInstance.apiUserAddUpdateAgencyUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateAgencyUserPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.AgencyUserDto *body = ; // BeagelManagers.Models.AgencyUser (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Adds or updates the agency user (Roles: SuperAdmin, Admin, GroupUser)
[apiInstance apiUserAddUpdateAgencyUserPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.AgencyUserDto}} BeagelManagers.Models.AgencyUser
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserAddUpdateAgencyUserPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var body = new BeagelEnterprise.Models.AgencyUserDto(); // BeagelEnterprise.Models.AgencyUserDto | BeagelManagers.Models.AgencyUser (optional) 

            try
            {
                // Adds or updates the agency user (Roles: SuperAdmin, Admin, GroupUser)
                apiInstance.apiUserAddUpdateAgencyUserPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserAddUpdateAgencyUserPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$body = ; // BeagelEnterprise.Models.AgencyUserDto | BeagelManagers.Models.AgencyUser

try {
    $api_instance->apiUserAddUpdateAgencyUserPost($body);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserAddUpdateAgencyUserPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.AgencyUserDto->new(); # BeagelEnterprise.Models.AgencyUserDto | BeagelManagers.Models.AgencyUser

eval { 
    $api_instance->apiUserAddUpdateAgencyUserPost(body => $body);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserAddUpdateAgencyUserPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
body =  # BeagelEnterprise.Models.AgencyUserDto | BeagelManagers.Models.AgencyUser (optional)

try: 
    # Adds or updates the agency user (Roles: SuperAdmin, Admin, GroupUser)
    api_instance.api_user_add_update_agency_user_post(body=body)
except ApiException as e:
    print("Exception when calling UserApi->apiUserAddUpdateAgencyUserPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiUserAddUpdateBiddderSalePost

Add updates bidder sale


/api/User/AddUpdateBiddderSale

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/User/AddUpdateBiddderSale"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        BeagelManagers.Models.BidderSale body = ; // BeagelManagers.Models.BidderSale | 
        try {
            apiInstance.apiUserAddUpdateBiddderSalePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateBiddderSalePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        BeagelManagers.Models.BidderSale body = ; // BeagelManagers.Models.BidderSale | 
        try {
            apiInstance.apiUserAddUpdateBiddderSalePost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateBiddderSalePost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.BidderSale *body = ; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Add updates bidder sale
[apiInstance apiUserAddUpdateBiddderSalePostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.BidderSale}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserAddUpdateBiddderSalePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var body = new BeagelManagers.Models.BidderSale(); // BeagelManagers.Models.BidderSale |  (optional) 

            try
            {
                // Add updates bidder sale
                apiInstance.apiUserAddUpdateBiddderSalePost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserAddUpdateBiddderSalePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$body = ; // BeagelManagers.Models.BidderSale | 

try {
    $api_instance->apiUserAddUpdateBiddderSalePost($body);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserAddUpdateBiddderSalePost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.BidderSale->new(); # BeagelManagers.Models.BidderSale | 

eval { 
    $api_instance->apiUserAddUpdateBiddderSalePost(body => $body);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserAddUpdateBiddderSalePost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
body =  # BeagelManagers.Models.BidderSale |  (optional)

try: 
    # Add updates bidder sale
    api_instance.api_user_add_update_biddder_sale_post(body=body)
except ApiException as e:
    print("Exception when calling UserApi->apiUserAddUpdateBiddderSalePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiUserAddUpdateBidderDocsPost

Add Update Bidder docs (Roles: Admin, AgencyUser , BranchUser, Agent, Bidder)


/api/User/AddUpdateBidderDocs

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: multipart/form-data"\
"//api/User/AddUpdateBidderDocs"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer bidderId = 56; // Integer | 
        Integer agentId = 56; // Integer | 
        Integer id = 56; // Integer | 
        String name = name_example; // String | 
        String path = path_example; // String | 
        Date dateCreated = 2013-10-20T19:20:30+01:00; // Date | 
        try {
            apiInstance.apiUserAddUpdateBidderDocsPost(file, bidderId, agentId, id, name, path, dateCreated);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateBidderDocsPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer bidderId = 56; // Integer | 
        Integer agentId = 56; // Integer | 
        Integer id = 56; // Integer | 
        String name = name_example; // String | 
        String path = path_example; // String | 
        Date dateCreated = 2013-10-20T19:20:30+01:00; // Date | 
        try {
            apiInstance.apiUserAddUpdateBidderDocsPost(file, bidderId, agentId, id, name, path, dateCreated);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateBidderDocsPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
array[byte[]] *file = ; //  (optional)
Integer *bidderId = 56; //  (optional)
Integer *agentId = 56; //  (optional)
Integer *id = 56; //  (optional)
String *name = name_example; //  (optional)
String *path = path_example; //  (optional)
Date *dateCreated = 2013-10-20T19:20:30+01:00; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Add Update Bidder docs (Roles: Admin, AgencyUser , BranchUser, Agent, Bidder)
[apiInstance apiUserAddUpdateBidderDocsPostWith:file
    bidderId:bidderId
    agentId:agentId
    id:id
    name:name
    path:path
    dateCreated:dateCreated
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'file':  // {{array[byte[]]}} 
  'bidderId': 56 // {{Integer}} 
  'agentId': 56 // {{Integer}} 
  'id': 56 // {{Integer}} 
  'name': name_example // {{String}} 
  'path': path_example // {{String}} 
  'dateCreated': 2013-10-20T19:20:30+01:00 // {{Date}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserAddUpdateBidderDocsPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var file = new array[byte[]](); // array[byte[]] |  (optional) 
            var bidderId = 56;  // Integer |  (optional) 
            var agentId = 56;  // Integer |  (optional) 
            var id = 56;  // Integer |  (optional) 
            var name = name_example;  // String |  (optional) 
            var path = path_example;  // String |  (optional) 
            var dateCreated = 2013-10-20T19:20:30+01:00;  // Date |  (optional) 

            try
            {
                // Add Update Bidder docs (Roles: Admin, AgencyUser , BranchUser, Agent, Bidder)
                apiInstance.apiUserAddUpdateBidderDocsPost(file, bidderId, agentId, id, name, path, dateCreated);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserAddUpdateBidderDocsPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$file = ; // array[byte[]] | 
$bidderId = 56; // Integer | 
$agentId = 56; // Integer | 
$id = 56; // Integer | 
$name = name_example; // String | 
$path = path_example; // String | 
$dateCreated = 2013-10-20T19:20:30+01:00; // Date | 

try {
    $api_instance->apiUserAddUpdateBidderDocsPost($file, $bidderId, $agentId, $id, $name, $path, $dateCreated);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserAddUpdateBidderDocsPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $file = []; # array[byte[]] | 
my $bidderId = 56; # Integer | 
my $agentId = 56; # Integer | 
my $id = 56; # Integer | 
my $name = name_example; # String | 
my $path = path_example; # String | 
my $dateCreated = 2013-10-20T19:20:30+01:00; # Date | 

eval { 
    $api_instance->apiUserAddUpdateBidderDocsPost(file => $file, bidderId => $bidderId, agentId => $agentId, id => $id, name => $name, path => $path, dateCreated => $dateCreated);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserAddUpdateBidderDocsPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
file =  # array[byte[]] |  (optional)
bidderId = 56 # Integer |  (optional)
agentId = 56 # Integer |  (optional)
id = 56 # Integer |  (optional)
name = name_example # String |  (optional)
path = path_example # String |  (optional)
dateCreated = 2013-10-20T19:20:30+01:00 # Date |  (optional)

try: 
    # Add Update Bidder docs (Roles: Admin, AgencyUser , BranchUser, Agent, Bidder)
    api_instance.api_user_add_update_bidder_docs_post(file=file, bidderId=bidderId, agentId=agentId, id=id, name=name, path=path, dateCreated=dateCreated)
except ApiException as e:
    print("Exception when calling UserApi->apiUserAddUpdateBidderDocsPost: %s\n" % e)

Parameters

Form parameters
Name Description
File
array[byte[]] (binary)
BidderId
Integer (int32)
AgentId
Integer (int32)
Id
Integer (int32)
Name
String
Path
String
DateCreated
Date (date-time)

Responses

Status: 200 - Success


apiUserAddUpdateBidderPost

Add Update a Bidder


/api/User/AddUpdateBidder

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/User/AddUpdateBidder"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        BeagelManagers.Models.Bidder body = ; // BeagelManagers.Models.Bidder | 
        try {
            apiInstance.apiUserAddUpdateBidderPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateBidderPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        BeagelManagers.Models.Bidder body = ; // BeagelManagers.Models.Bidder | 
        try {
            apiInstance.apiUserAddUpdateBidderPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateBidderPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Bidder *body = ; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Add Update a Bidder
[apiInstance apiUserAddUpdateBidderPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Bidder}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserAddUpdateBidderPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var body = new BeagelManagers.Models.Bidder(); // BeagelManagers.Models.Bidder |  (optional) 

            try
            {
                // Add Update a Bidder
                apiInstance.apiUserAddUpdateBidderPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserAddUpdateBidderPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$body = ; // BeagelManagers.Models.Bidder | 

try {
    $api_instance->apiUserAddUpdateBidderPost($body);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserAddUpdateBidderPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Bidder->new(); # BeagelManagers.Models.Bidder | 

eval { 
    $api_instance->apiUserAddUpdateBidderPost(body => $body);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserAddUpdateBidderPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
body =  # BeagelManagers.Models.Bidder |  (optional)

try: 
    # Add Update a Bidder
    api_instance.api_user_add_update_bidder_post(body=body)
except ApiException as e:
    print("Exception when calling UserApi->apiUserAddUpdateBidderPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiUserAddUpdateBidderSaleNewFlagPost

Add updates bidder sale's new flag


/api/User/AddUpdateBidderSaleNewFlag

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/AddUpdateBidderSaleNewFlag?BidderSaleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer bidderSaleId = 56; // Integer | 
        try {
            apiInstance.apiUserAddUpdateBidderSaleNewFlagPost(bidderSaleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateBidderSaleNewFlagPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer bidderSaleId = 56; // Integer | 
        try {
            apiInstance.apiUserAddUpdateBidderSaleNewFlagPost(bidderSaleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateBidderSaleNewFlagPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *bidderSaleId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Add updates bidder sale's new flag
[apiInstance apiUserAddUpdateBidderSaleNewFlagPostWith:bidderSaleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'bidderSaleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserAddUpdateBidderSaleNewFlagPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var bidderSaleId = 56;  // Integer |  (optional) 

            try
            {
                // Add updates bidder sale's new flag
                apiInstance.apiUserAddUpdateBidderSaleNewFlagPost(bidderSaleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserAddUpdateBidderSaleNewFlagPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$bidderSaleId = 56; // Integer | 

try {
    $api_instance->apiUserAddUpdateBidderSaleNewFlagPost($bidderSaleId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserAddUpdateBidderSaleNewFlagPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $bidderSaleId = 56; # Integer | 

eval { 
    $api_instance->apiUserAddUpdateBidderSaleNewFlagPost(bidderSaleId => $bidderSaleId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserAddUpdateBidderSaleNewFlagPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
bidderSaleId = 56 # Integer |  (optional)

try: 
    # Add updates bidder sale's new flag
    api_instance.api_user_add_update_bidder_sale_new_flag_post(bidderSaleId=bidderSaleId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserAddUpdateBidderSaleNewFlagPost: %s\n" % e)

Parameters

Query parameters
Name Description
BidderSaleId
Integer (int32)

Responses

Status: 200 - Success


apiUserAddUpdateBranchUserPost

Add updates branch user


/api/User/AddUpdateBranchUser

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/User/AddUpdateBranchUser"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        BeagelEnterprise.Models.BranchUserDto body = ; // BeagelEnterprise.Models.BranchUserDto | 
        try {
            apiInstance.apiUserAddUpdateBranchUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateBranchUserPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        BeagelEnterprise.Models.BranchUserDto body = ; // BeagelEnterprise.Models.BranchUserDto | 
        try {
            apiInstance.apiUserAddUpdateBranchUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateBranchUserPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.BranchUserDto *body = ; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Add updates branch user
[apiInstance apiUserAddUpdateBranchUserPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.BranchUserDto}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserAddUpdateBranchUserPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var body = new BeagelEnterprise.Models.BranchUserDto(); // BeagelEnterprise.Models.BranchUserDto |  (optional) 

            try
            {
                // Add updates branch user
                apiInstance.apiUserAddUpdateBranchUserPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserAddUpdateBranchUserPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$body = ; // BeagelEnterprise.Models.BranchUserDto | 

try {
    $api_instance->apiUserAddUpdateBranchUserPost($body);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserAddUpdateBranchUserPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.BranchUserDto->new(); # BeagelEnterprise.Models.BranchUserDto | 

eval { 
    $api_instance->apiUserAddUpdateBranchUserPost(body => $body);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserAddUpdateBranchUserPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
body =  # BeagelEnterprise.Models.BranchUserDto |  (optional)

try: 
    # Add updates branch user
    api_instance.api_user_add_update_branch_user_post(body=body)
except ApiException as e:
    print("Exception when calling UserApi->apiUserAddUpdateBranchUserPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiUserAddUpdateGroupUserPost

Add updates group user


/api/User/AddUpdateGroupUser

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/User/AddUpdateGroupUser"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        BeagelEnterprise.Models.GroupUserDto body = ; // BeagelEnterprise.Models.GroupUserDto | 
        try {
            apiInstance.apiUserAddUpdateGroupUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateGroupUserPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        BeagelEnterprise.Models.GroupUserDto body = ; // BeagelEnterprise.Models.GroupUserDto | 
        try {
            apiInstance.apiUserAddUpdateGroupUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateGroupUserPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.GroupUserDto *body = ; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Add updates group user
[apiInstance apiUserAddUpdateGroupUserPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.GroupUserDto}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserAddUpdateGroupUserPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var body = new BeagelEnterprise.Models.GroupUserDto(); // BeagelEnterprise.Models.GroupUserDto |  (optional) 

            try
            {
                // Add updates group user
                apiInstance.apiUserAddUpdateGroupUserPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserAddUpdateGroupUserPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$body = ; // BeagelEnterprise.Models.GroupUserDto | 

try {
    $api_instance->apiUserAddUpdateGroupUserPost($body);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserAddUpdateGroupUserPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.GroupUserDto->new(); # BeagelEnterprise.Models.GroupUserDto | 

eval { 
    $api_instance->apiUserAddUpdateGroupUserPost(body => $body);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserAddUpdateGroupUserPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
body =  # BeagelEnterprise.Models.GroupUserDto |  (optional)

try: 
    # Add updates group user
    api_instance.api_user_add_update_group_user_post(body=body)
except ApiException as e:
    print("Exception when calling UserApi->apiUserAddUpdateGroupUserPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiUserAddUpdateLogoCompanyPost

Add updates logo company


/api/User/AddUpdateLogoCompany

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: multipart/form-data"\
"//api/User/AddUpdateLogoCompany"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer id = 56; // Integer | 
        String companyName = companyName_example; // String | 
        String logoPath = logoPath_example; // String | 
        Boolean status = true; // Boolean | 
        try {
            apiInstance.apiUserAddUpdateLogoCompanyPost(file, id, companyName, logoPath, status);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateLogoCompanyPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        array[byte[]] file = ; // array[byte[]] | 
        Integer id = 56; // Integer | 
        String companyName = companyName_example; // String | 
        String logoPath = logoPath_example; // String | 
        Boolean status = true; // Boolean | 
        try {
            apiInstance.apiUserAddUpdateLogoCompanyPost(file, id, companyName, logoPath, status);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateLogoCompanyPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
array[byte[]] *file = ; //  (optional)
Integer *id = 56; //  (optional)
String *companyName = companyName_example; //  (optional)
String *logoPath = logoPath_example; //  (optional)
Boolean *status = true; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Add updates logo company
[apiInstance apiUserAddUpdateLogoCompanyPostWith:file
    id:id
    companyName:companyName
    logoPath:logoPath
    status:status
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'file':  // {{array[byte[]]}} 
  'id': 56 // {{Integer}} 
  'companyName': companyName_example // {{String}} 
  'logoPath': logoPath_example // {{String}} 
  'status': true // {{Boolean}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserAddUpdateLogoCompanyPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var file = new array[byte[]](); // array[byte[]] |  (optional) 
            var id = 56;  // Integer |  (optional) 
            var companyName = companyName_example;  // String |  (optional) 
            var logoPath = logoPath_example;  // String |  (optional) 
            var status = true;  // Boolean |  (optional) 

            try
            {
                // Add updates logo company
                apiInstance.apiUserAddUpdateLogoCompanyPost(file, id, companyName, logoPath, status);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserAddUpdateLogoCompanyPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$file = ; // array[byte[]] | 
$id = 56; // Integer | 
$companyName = companyName_example; // String | 
$logoPath = logoPath_example; // String | 
$status = true; // Boolean | 

try {
    $api_instance->apiUserAddUpdateLogoCompanyPost($file, $id, $companyName, $logoPath, $status);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserAddUpdateLogoCompanyPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $file = []; # array[byte[]] | 
my $id = 56; # Integer | 
my $companyName = companyName_example; # String | 
my $logoPath = logoPath_example; # String | 
my $status = true; # Boolean | 

eval { 
    $api_instance->apiUserAddUpdateLogoCompanyPost(file => $file, id => $id, companyName => $companyName, logoPath => $logoPath, status => $status);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserAddUpdateLogoCompanyPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
file =  # array[byte[]] |  (optional)
id = 56 # Integer |  (optional)
companyName = companyName_example # String |  (optional)
logoPath = logoPath_example # String |  (optional)
status = true # Boolean |  (optional)

try: 
    # Add updates logo company
    api_instance.api_user_add_update_logo_company_post(file=file, id=id, companyName=companyName, logoPath=logoPath, status=status)
except ApiException as e:
    print("Exception when calling UserApi->apiUserAddUpdateLogoCompanyPost: %s\n" % e)

Parameters

Form parameters
Name Description
File
array[byte[]] (binary)
Id
Integer (int32)
CompanyName
String
LogoPath
String
Status
Boolean

Responses

Status: 200 - Success


apiUserAddUpdateSolicitorPost

Add/Update Solicitor


/api/User/AddUpdateSolicitor

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/User/AddUpdateSolicitor"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        BeagelManagers.Models.Solicitor body = ; // BeagelManagers.Models.Solicitor | 
        try {
            apiInstance.apiUserAddUpdateSolicitorPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateSolicitorPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        BeagelManagers.Models.Solicitor body = ; // BeagelManagers.Models.Solicitor | 
        try {
            apiInstance.apiUserAddUpdateSolicitorPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateSolicitorPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.Solicitor *body = ; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Add/Update Solicitor
[apiInstance apiUserAddUpdateSolicitorPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.Solicitor}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserAddUpdateSolicitorPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var body = new BeagelManagers.Models.Solicitor(); // BeagelManagers.Models.Solicitor |  (optional) 

            try
            {
                // Add/Update Solicitor
                apiInstance.apiUserAddUpdateSolicitorPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserAddUpdateSolicitorPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$body = ; // BeagelManagers.Models.Solicitor | 

try {
    $api_instance->apiUserAddUpdateSolicitorPost($body);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserAddUpdateSolicitorPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.Solicitor->new(); # BeagelManagers.Models.Solicitor | 

eval { 
    $api_instance->apiUserAddUpdateSolicitorPost(body => $body);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserAddUpdateSolicitorPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
body =  # BeagelManagers.Models.Solicitor |  (optional)

try: 
    # Add/Update Solicitor
    api_instance.api_user_add_update_solicitor_post(body=body)
except ApiException as e:
    print("Exception when calling UserApi->apiUserAddUpdateSolicitorPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiUserAddUpdateUserLogsPost

Add updates User logs


/api/User/AddUpdateUserLogs

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/User/AddUpdateUserLogs"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        BeagelEnterprise.Models.UserLogsDto body = ; // BeagelEnterprise.Models.UserLogsDto | 
        try {
            apiInstance.apiUserAddUpdateUserLogsPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateUserLogsPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        BeagelEnterprise.Models.UserLogsDto body = ; // BeagelEnterprise.Models.UserLogsDto | 
        try {
            apiInstance.apiUserAddUpdateUserLogsPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateUserLogsPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelEnterprise.Models.UserLogsDto *body = ; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Add updates User logs
[apiInstance apiUserAddUpdateUserLogsPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'body':  // {{BeagelEnterprise.Models.UserLogsDto}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserAddUpdateUserLogsPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var body = new BeagelEnterprise.Models.UserLogsDto(); // BeagelEnterprise.Models.UserLogsDto |  (optional) 

            try
            {
                // Add updates User logs
                apiInstance.apiUserAddUpdateUserLogsPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserAddUpdateUserLogsPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$body = ; // BeagelEnterprise.Models.UserLogsDto | 

try {
    $api_instance->apiUserAddUpdateUserLogsPost($body);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserAddUpdateUserLogsPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $body = WWW::SwaggerClient::Object::BeagelEnterprise.Models.UserLogsDto->new(); # BeagelEnterprise.Models.UserLogsDto | 

eval { 
    $api_instance->apiUserAddUpdateUserLogsPost(body => $body);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserAddUpdateUserLogsPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
body =  # BeagelEnterprise.Models.UserLogsDto |  (optional)

try: 
    # Add updates User logs
    api_instance.api_user_add_update_user_logs_post(body=body)
except ApiException as e:
    print("Exception when calling UserApi->apiUserAddUpdateUserLogsPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiUserAddUpdateUserPost

Adds or updates the user with two factor authenticator


/api/User/AddUpdateUser

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
-H "Content-Type: application/json-patch+json,application/json,text/json,application/*+json"\
"//api/User/AddUpdateUser"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        BeagelManagers.Models.User body = ; // BeagelManagers.Models.User | BeagelManagers.Models.User
        try {
            apiInstance.apiUserAddUpdateUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateUserPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        BeagelManagers.Models.User body = ; // BeagelManagers.Models.User | BeagelManagers.Models.User
        try {
            apiInstance.apiUserAddUpdateUserPost(body);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserAddUpdateUserPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
BeagelManagers.Models.User *body = ; // BeagelManagers.Models.User (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Adds or updates the user with two factor authenticator
[apiInstance apiUserAddUpdateUserPostWith:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'body':  // {{BeagelManagers.Models.User}} BeagelManagers.Models.User
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserAddUpdateUserPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var body = new BeagelManagers.Models.User(); // BeagelManagers.Models.User | BeagelManagers.Models.User (optional) 

            try
            {
                // Adds or updates the user with two factor authenticator
                apiInstance.apiUserAddUpdateUserPost(body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserAddUpdateUserPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$body = ; // BeagelManagers.Models.User | BeagelManagers.Models.User

try {
    $api_instance->apiUserAddUpdateUserPost($body);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserAddUpdateUserPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $body = WWW::SwaggerClient::Object::BeagelManagers.Models.User->new(); # BeagelManagers.Models.User | BeagelManagers.Models.User

eval { 
    $api_instance->apiUserAddUpdateUserPost(body => $body);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserAddUpdateUserPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
body =  # BeagelManagers.Models.User | BeagelManagers.Models.User (optional)

try: 
    # Adds or updates the user with two factor authenticator
    api_instance.api_user_add_update_user_post(body=body)
except ApiException as e:
    print("Exception when calling UserApi->apiUserAddUpdateUserPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


apiUserDeleteBidderDocsAgentDelete

Delete Bidder Docs Agent (Roles: Admin, AgencyUser , BranchUser, Agent, Bidder)


/api/User/DeleteBidderDocsAgent

Usage and SDK Samples

curl -X DELETE\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/DeleteBidderDocsAgent?BidderDocsId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer bidderDocsId = 56; // Integer | 
        try {
            apiInstance.apiUserDeleteBidderDocsAgentDelete(bidderDocsId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserDeleteBidderDocsAgentDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer bidderDocsId = 56; // Integer | 
        try {
            apiInstance.apiUserDeleteBidderDocsAgentDelete(bidderDocsId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserDeleteBidderDocsAgentDelete");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *bidderDocsId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Delete Bidder Docs Agent (Roles: Admin, AgencyUser , BranchUser, Agent, Bidder)
[apiInstance apiUserDeleteBidderDocsAgentDeleteWith:bidderDocsId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'bidderDocsId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserDeleteBidderDocsAgentDelete(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var bidderDocsId = 56;  // Integer |  (optional) 

            try
            {
                // Delete Bidder Docs Agent (Roles: Admin, AgencyUser , BranchUser, Agent, Bidder)
                apiInstance.apiUserDeleteBidderDocsAgentDelete(bidderDocsId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserDeleteBidderDocsAgentDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$bidderDocsId = 56; // Integer | 

try {
    $api_instance->apiUserDeleteBidderDocsAgentDelete($bidderDocsId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserDeleteBidderDocsAgentDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $bidderDocsId = 56; # Integer | 

eval { 
    $api_instance->apiUserDeleteBidderDocsAgentDelete(bidderDocsId => $bidderDocsId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserDeleteBidderDocsAgentDelete: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
bidderDocsId = 56 # Integer |  (optional)

try: 
    # Delete Bidder Docs Agent (Roles: Admin, AgencyUser , BranchUser, Agent, Bidder)
    api_instance.api_user_delete_bidder_docs_agent_delete(bidderDocsId=bidderDocsId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserDeleteBidderDocsAgentDelete: %s\n" % e)

Parameters

Query parameters
Name Description
BidderDocsId
Integer (int32)

Responses

Status: 200 - Success


apiUserGetAdminUserByUserIdGet

Get admin user by user id (Roles: SuperAdmin, Admin)


/api/User/GetAdminUserByUserId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetAdminUserByUserId?UserId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiUserGetAdminUserByUserIdGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAdminUserByUserIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiUserGetAdminUserByUserIdGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAdminUserByUserIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *userId = userId_example; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get admin user by user id (Roles: SuperAdmin, Admin)
[apiInstance apiUserGetAdminUserByUserIdGetWith:userId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'userId': userId_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetAdminUserByUserIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var userId = userId_example;  // String |  (optional) 

            try
            {
                // Get admin user by user id (Roles: SuperAdmin, Admin)
                apiInstance.apiUserGetAdminUserByUserIdGet(userId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetAdminUserByUserIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$userId = userId_example; // String | 

try {
    $api_instance->apiUserGetAdminUserByUserIdGet($userId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetAdminUserByUserIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $userId = userId_example; # String | 

eval { 
    $api_instance->apiUserGetAdminUserByUserIdGet(userId => $userId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetAdminUserByUserIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
userId = userId_example # String |  (optional)

try: 
    # Get admin user by user id (Roles: SuperAdmin, Admin)
    api_instance.api_user_get_admin_user_by_user_id_get(userId=userId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetAdminUserByUserIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
UserId
String

Responses

Status: 200 - Success


apiUserGetAgencyUsersForGroupGet

Get agency users by group id (Role: SuperAdmin, Admin, GroupUser)


/api/User/GetAgencyUsersForGroup

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetAgencyUsersForGroup?GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiUserGetAgencyUsersForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgencyUsersForGroupGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiUserGetAgencyUsersForGroupGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgencyUsersForGroupGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get agency users by group id (Role: SuperAdmin, Admin, GroupUser)
[apiInstance apiUserGetAgencyUsersForGroupGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetAgencyUsersForGroupGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // Get agency users by group id (Role: SuperAdmin, Admin, GroupUser)
                apiInstance.apiUserGetAgencyUsersForGroupGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetAgencyUsersForGroupGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiUserGetAgencyUsersForGroupGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetAgencyUsersForGroupGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiUserGetAgencyUsersForGroupGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetAgencyUsersForGroupGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
groupId = 56 # Integer |  (optional)

try: 
    # Get agency users by group id (Role: SuperAdmin, Admin, GroupUser)
    api_instance.api_user_get_agency_users_for_group_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetAgencyUsersForGroupGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiUserGetAgencyUsersGet

Retuns a list of agency users


/api/User/GetAgencyUsers

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetAgencyUsers?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiUserGetAgencyUsersGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgencyUsersGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiUserGetAgencyUsersGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgencyUsersGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Retuns a list of agency users
[apiInstance apiUserGetAgencyUsersGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetAgencyUsersGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // Retuns a list of agency users
                apiInstance.apiUserGetAgencyUsersGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetAgencyUsersGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiUserGetAgencyUsersGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetAgencyUsersGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiUserGetAgencyUsersGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetAgencyUsersGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
agencyId = 56 # Integer |  (optional)

try: 
    # Retuns a list of agency users
    api_instance.api_user_get_agency_users_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetAgencyUsersGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiUserGetAgentGet

Get agent by agent id


/api/User/GetAgent

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetAgent?AgentId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiUserGetAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgentGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer agentId = 56; // Integer | 
        try {
            apiInstance.apiUserGetAgentGet(agentId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgentGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agentId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get agent by agent id
[apiInstance apiUserGetAgentGetWith:agentId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'agentId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetAgentGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var agentId = 56;  // Integer |  (optional) 

            try
            {
                // Get agent by agent id
                apiInstance.apiUserGetAgentGet(agentId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetAgentGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$agentId = 56; // Integer | 

try {
    $api_instance->apiUserGetAgentGet($agentId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetAgentGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $agentId = 56; # Integer | 

eval { 
    $api_instance->apiUserGetAgentGet(agentId => $agentId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetAgentGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
agentId = 56 # Integer |  (optional)

try: 
    # Get agent by agent id
    api_instance.api_user_get_agent_get(agentId=agentId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetAgentGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgentId
Integer (int32)

Responses

Status: 200 - Success


apiUserGetAgentUserByIdGet

Get Agent by User Id


/api/User/GetAgentUserById

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetAgentUserById?UserId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiUserGetAgentUserByIdGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgentUserByIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiUserGetAgentUserByIdGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgentUserByIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *userId = userId_example; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get Agent by User Id
[apiInstance apiUserGetAgentUserByIdGetWith:userId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'userId': userId_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetAgentUserByIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var userId = userId_example;  // String |  (optional) 

            try
            {
                // Get Agent by User Id
                apiInstance.apiUserGetAgentUserByIdGet(userId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetAgentUserByIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$userId = userId_example; // String | 

try {
    $api_instance->apiUserGetAgentUserByIdGet($userId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetAgentUserByIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $userId = userId_example; # String | 

eval { 
    $api_instance->apiUserGetAgentUserByIdGet(userId => $userId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetAgentUserByIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
userId = userId_example # String |  (optional)

try: 
    # Get Agent by User Id
    api_instance.api_user_get_agent_user_by_id_get(userId=userId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetAgentUserByIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
UserId
String

Responses

Status: 200 - Success


apiUserGetAgentUserGet

Get Agent User by user id


/api/User/GetAgentUser

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetAgentUser?userId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiUserGetAgentUserGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgentUserGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiUserGetAgentUserGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgentUserGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *userId = userId_example; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get Agent User by user id
[apiInstance apiUserGetAgentUserGetWith:userId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'userId': userId_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetAgentUserGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var userId = userId_example;  // String |  (optional) 

            try
            {
                // Get Agent User by user id
                apiInstance.apiUserGetAgentUserGet(userId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetAgentUserGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$userId = userId_example; // String | 

try {
    $api_instance->apiUserGetAgentUserGet($userId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetAgentUserGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $userId = userId_example; # String | 

eval { 
    $api_instance->apiUserGetAgentUserGet(userId => $userId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetAgentUserGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
userId = userId_example # String |  (optional)

try: 
    # Get Agent User by user id
    api_instance.api_user_get_agent_user_get(userId=userId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetAgentUserGet: %s\n" % e)

Parameters

Query parameters
Name Description
userId
String

Responses

Status: 200 - Success


apiUserGetAgentUsersGet

Get List of agnets for an agency.


/api/User/GetAgentUsers

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetAgentUsers?AgencyId=&BranchId=&GroupId=&Role="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer agencyId = 56; // Integer | 
        Integer branchId = 56; // Integer | 
        Integer groupId = 56; // Integer | 
        String role = role_example; // String | 
        try {
            apiInstance.apiUserGetAgentUsersGet(agencyId, branchId, groupId, role);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgentUsersGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer agencyId = 56; // Integer | 
        Integer branchId = 56; // Integer | 
        Integer groupId = 56; // Integer | 
        String role = role_example; // String | 
        try {
            apiInstance.apiUserGetAgentUsersGet(agencyId, branchId, groupId, role);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgentUsersGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)
Integer *branchId = 56; //  (optional)
Integer *groupId = 56; //  (optional)
String *role = role_example; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get List of agnets for an agency.
[apiInstance apiUserGetAgentUsersGetWith:agencyId
    branchId:branchId
    groupId:groupId
    role:role
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'agencyId': 56, // {{Integer}} 
  'branchId': 56, // {{Integer}} 
  'groupId': 56, // {{Integer}} 
  'role': role_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetAgentUsersGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var agencyId = 56;  // Integer |  (optional) 
            var branchId = 56;  // Integer |  (optional) 
            var groupId = 56;  // Integer |  (optional) 
            var role = role_example;  // String |  (optional) 

            try
            {
                // Get List of agnets for an agency.
                apiInstance.apiUserGetAgentUsersGet(agencyId, branchId, groupId, role);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetAgentUsersGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$agencyId = 56; // Integer | 
$branchId = 56; // Integer | 
$groupId = 56; // Integer | 
$role = role_example; // String | 

try {
    $api_instance->apiUserGetAgentUsersGet($agencyId, $branchId, $groupId, $role);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetAgentUsersGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $agencyId = 56; # Integer | 
my $branchId = 56; # Integer | 
my $groupId = 56; # Integer | 
my $role = role_example; # String | 

eval { 
    $api_instance->apiUserGetAgentUsersGet(agencyId => $agencyId, branchId => $branchId, groupId => $groupId, role => $role);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetAgentUsersGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
agencyId = 56 # Integer |  (optional)
branchId = 56 # Integer |  (optional)
groupId = 56 # Integer |  (optional)
role = role_example # String |  (optional)

try: 
    # Get List of agnets for an agency.
    api_instance.api_user_get_agent_users_get(agencyId=agencyId, branchId=branchId, groupId=groupId, role=role)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetAgentUsersGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)
BranchId
Integer (int32)
GroupId
Integer (int32)
Role
String

Responses

Status: 200 - Success


apiUserGetAgentsByBranchIdGet

Get agents by branch id


/api/User/GetAgentsByBranchId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetAgentsByBranchId?BranchId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiUserGetAgentsByBranchIdGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgentsByBranchIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer branchId = 56; // Integer | 
        try {
            apiInstance.apiUserGetAgentsByBranchIdGet(branchId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgentsByBranchIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *branchId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get agents by branch id
[apiInstance apiUserGetAgentsByBranchIdGetWith:branchId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'branchId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetAgentsByBranchIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var branchId = 56;  // Integer |  (optional) 

            try
            {
                // Get agents by branch id
                apiInstance.apiUserGetAgentsByBranchIdGet(branchId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetAgentsByBranchIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$branchId = 56; // Integer | 

try {
    $api_instance->apiUserGetAgentsByBranchIdGet($branchId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetAgentsByBranchIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $branchId = 56; # Integer | 

eval { 
    $api_instance->apiUserGetAgentsByBranchIdGet(branchId => $branchId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetAgentsByBranchIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
branchId = 56 # Integer |  (optional)

try: 
    # Get agents by branch id
    api_instance.api_user_get_agents_by_branch_id_get(branchId=branchId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetAgentsByBranchIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
BranchId
Integer (int32)

Responses

Status: 200 - Success


apiUserGetAgentsByGroupIdGet

Get agents by Group id


/api/User/GetAgentsByGroupId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetAgentsByGroupId?GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiUserGetAgentsByGroupIdGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgentsByGroupIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiUserGetAgentsByGroupIdGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgentsByGroupIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get agents by Group id
[apiInstance apiUserGetAgentsByGroupIdGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetAgentsByGroupIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // Get agents by Group id
                apiInstance.apiUserGetAgentsByGroupIdGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetAgentsByGroupIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiUserGetAgentsByGroupIdGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetAgentsByGroupIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiUserGetAgentsByGroupIdGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetAgentsByGroupIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
groupId = 56 # Integer |  (optional)

try: 
    # Get agents by Group id
    api_instance.api_user_get_agents_by_group_id_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetAgentsByGroupIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiUserGetAgentsGet

Returns a list of Agents


/api/User/GetAgents

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetAgents?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiUserGetAgentsGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgentsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiUserGetAgentsGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAgentsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Returns a list of Agents
[apiInstance apiUserGetAgentsGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetAgentsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // Returns a list of Agents
                apiInstance.apiUserGetAgentsGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetAgentsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiUserGetAgentsGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetAgentsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiUserGetAgentsGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetAgentsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
agencyId = 56 # Integer |  (optional)

try: 
    # Returns a list of Agents
    api_instance.api_user_get_agents_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetAgentsGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiUserGetAllAgentsGet

Get All the agents


/api/User/GetAllAgents

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetAllAgents"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        try {
            apiInstance.apiUserGetAllAgentsGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAllAgentsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        try {
            apiInstance.apiUserGetAllAgentsGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetAllAgentsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

UserApi *apiInstance = [[UserApi alloc] init];

// Get All the agents
[apiInstance apiUserGetAllAgentsGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetAllAgentsGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();

            try
            {
                // Get All the agents
                apiInstance.apiUserGetAllAgentsGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetAllAgentsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();

try {
    $api_instance->apiUserGetAllAgentsGet();
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetAllAgentsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();

eval { 
    $api_instance->apiUserGetAllAgentsGet();
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetAllAgentsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()

try: 
    # Get All the agents
    api_instance.api_user_get_all_agents_get()
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetAllAgentsGet: %s\n" % e)

Parameters

Responses

Status: 200 - Success


apiUserGetBidderByIdGet

Get bidder details by user id


/api/User/GetBidderById

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetBidderById?userId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer userId = 56; // Integer | 
        try {
            apiInstance.apiUserGetBidderByIdGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBidderByIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer userId = 56; // Integer | 
        try {
            apiInstance.apiUserGetBidderByIdGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBidderByIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *userId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get bidder details by user id
[apiInstance apiUserGetBidderByIdGetWith:userId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'userId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetBidderByIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var userId = 56;  // Integer |  (optional) 

            try
            {
                // Get bidder details by user id
                apiInstance.apiUserGetBidderByIdGet(userId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetBidderByIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$userId = 56; // Integer | 

try {
    $api_instance->apiUserGetBidderByIdGet($userId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetBidderByIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $userId = 56; # Integer | 

eval { 
    $api_instance->apiUserGetBidderByIdGet(userId => $userId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetBidderByIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
userId = 56 # Integer |  (optional)

try: 
    # Get bidder details by user id
    api_instance.api_user_get_bidder_by_id_get(userId=userId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetBidderByIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
userId
Integer (int32)

Responses

Status: 200 - Success


apiUserGetBidderBySaleIdGet

Gets the bidders by the sale id


/api/User/GetBidderBySaleId

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetBidderBySaleId?SaleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiUserGetBidderBySaleIdGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBidderBySaleIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiUserGetBidderBySaleIdGet(saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBidderBySaleIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *saleId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Gets the bidders by the sale id
[apiInstance apiUserGetBidderBySaleIdGetWith:saleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'saleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetBidderBySaleIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var saleId = 56;  // Integer |  (optional) 

            try
            {
                // Gets the bidders by the sale id
                apiInstance.apiUserGetBidderBySaleIdGet(saleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetBidderBySaleIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$saleId = 56; // Integer | 

try {
    $api_instance->apiUserGetBidderBySaleIdGet($saleId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetBidderBySaleIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $saleId = 56; # Integer | 

eval { 
    $api_instance->apiUserGetBidderBySaleIdGet(saleId => $saleId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetBidderBySaleIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
saleId = 56 # Integer |  (optional)

try: 
    # Gets the bidders by the sale id
    api_instance.api_user_get_bidder_by_sale_id_get(saleId=saleId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetBidderBySaleIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
SaleId
Integer (int32)

Responses

Status: 200 - Success


apiUserGetBidderDocForBidderGet

Get bidder docs for bidder (Roles: Admin, AgencyUser, BranchUser, Agent, Bidder)


/api/User/GetBidderDocForBidder

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetBidderDocForBidder?BidderId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer bidderId = 56; // Integer | 
        try {
            apiInstance.apiUserGetBidderDocForBidderGet(bidderId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBidderDocForBidderGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer bidderId = 56; // Integer | 
        try {
            apiInstance.apiUserGetBidderDocForBidderGet(bidderId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBidderDocForBidderGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *bidderId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get bidder docs for bidder (Roles: Admin, AgencyUser, BranchUser, Agent, Bidder)
[apiInstance apiUserGetBidderDocForBidderGetWith:bidderId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'bidderId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetBidderDocForBidderGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var bidderId = 56;  // Integer |  (optional) 

            try
            {
                // Get bidder docs for bidder (Roles: Admin, AgencyUser, BranchUser, Agent, Bidder)
                apiInstance.apiUserGetBidderDocForBidderGet(bidderId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetBidderDocForBidderGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$bidderId = 56; // Integer | 

try {
    $api_instance->apiUserGetBidderDocForBidderGet($bidderId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetBidderDocForBidderGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $bidderId = 56; # Integer | 

eval { 
    $api_instance->apiUserGetBidderDocForBidderGet(bidderId => $bidderId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetBidderDocForBidderGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
bidderId = 56 # Integer |  (optional)

try: 
    # Get bidder docs for bidder (Roles: Admin, AgencyUser, BranchUser, Agent, Bidder)
    api_instance.api_user_get_bidder_doc_for_bidder_get(bidderId=bidderId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetBidderDocForBidderGet: %s\n" % e)

Parameters

Query parameters
Name Description
BidderId
Integer (int32)

Responses

Status: 200 - Success


apiUserGetBidderDocGet

Get bidder doc by id (Roles: Admin, AgencyUser, BranchUser, Agent, Bidder)


/api/User/GetBidderDoc

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetBidderDoc?Id="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiUserGetBidderDocGet(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBidderDocGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer id = 56; // Integer | 
        try {
            apiInstance.apiUserGetBidderDocGet(id);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBidderDocGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get bidder doc by id (Roles: Admin, AgencyUser, BranchUser, Agent, Bidder)
[apiInstance apiUserGetBidderDocGetWith:id
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'id': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetBidderDocGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var id = 56;  // Integer |  (optional) 

            try
            {
                // Get bidder doc by id (Roles: Admin, AgencyUser, BranchUser, Agent, Bidder)
                apiInstance.apiUserGetBidderDocGet(id);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetBidderDocGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$id = 56; // Integer | 

try {
    $api_instance->apiUserGetBidderDocGet($id);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetBidderDocGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $id = 56; # Integer | 

eval { 
    $api_instance->apiUserGetBidderDocGet(id => $id);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetBidderDocGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
id = 56 # Integer |  (optional)

try: 
    # Get bidder doc by id (Roles: Admin, AgencyUser, BranchUser, Agent, Bidder)
    api_instance.api_user_get_bidder_doc_get(id=id)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetBidderDocGet: %s\n" % e)

Parameters

Query parameters
Name Description
Id
Integer (int32)

Responses

Status: 200 - Success


apiUserGetBidderSaleStatusGet

Get bidder sale status


/api/User/GetBidderSaleStatus

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetBidderSaleStatus?BidderId=&SaleId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer bidderId = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiUserGetBidderSaleStatusGet(bidderId, saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBidderSaleStatusGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer bidderId = 56; // Integer | 
        Integer saleId = 56; // Integer | 
        try {
            apiInstance.apiUserGetBidderSaleStatusGet(bidderId, saleId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBidderSaleStatusGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *bidderId = 56; //  (optional)
Integer *saleId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get bidder sale status
[apiInstance apiUserGetBidderSaleStatusGetWith:bidderId
    saleId:saleId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'bidderId': 56, // {{Integer}} 
  'saleId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetBidderSaleStatusGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var bidderId = 56;  // Integer |  (optional) 
            var saleId = 56;  // Integer |  (optional) 

            try
            {
                // Get bidder sale status
                apiInstance.apiUserGetBidderSaleStatusGet(bidderId, saleId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetBidderSaleStatusGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$bidderId = 56; // Integer | 
$saleId = 56; // Integer | 

try {
    $api_instance->apiUserGetBidderSaleStatusGet($bidderId, $saleId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetBidderSaleStatusGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $bidderId = 56; # Integer | 
my $saleId = 56; # Integer | 

eval { 
    $api_instance->apiUserGetBidderSaleStatusGet(bidderId => $bidderId, saleId => $saleId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetBidderSaleStatusGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
bidderId = 56 # Integer |  (optional)
saleId = 56 # Integer |  (optional)

try: 
    # Get bidder sale status
    api_instance.api_user_get_bidder_sale_status_get(bidderId=bidderId, saleId=saleId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetBidderSaleStatusGet: %s\n" % e)

Parameters

Query parameters
Name Description
BidderId
Integer (int32)
SaleId
Integer (int32)

Responses

Status: 200 - Success


apiUserGetBidderSalesGet

Get bidder sales for search filter


/api/User/GetBidderSales

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetBidderSales?AgencyId=&BranchId=&AgentId=&Role=&Status=&Name=&Email="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        String agencyId = agencyId_example; // String | 
        String branchId = branchId_example; // String | 
        String agentId = agentId_example; // String | 
        String role = role_example; // String | 
        String status = status_example; // String | 
        String name = name_example; // String | 
        String email = email_example; // String | 
        try {
            apiInstance.apiUserGetBidderSalesGet(agencyId, branchId, agentId, role, status, name, email);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBidderSalesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        String agencyId = agencyId_example; // String | 
        String branchId = branchId_example; // String | 
        String agentId = agentId_example; // String | 
        String role = role_example; // String | 
        String status = status_example; // String | 
        String name = name_example; // String | 
        String email = email_example; // String | 
        try {
            apiInstance.apiUserGetBidderSalesGet(agencyId, branchId, agentId, role, status, name, email);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBidderSalesGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *agencyId = agencyId_example; //  (optional)
String *branchId = branchId_example; //  (optional)
String *agentId = agentId_example; //  (optional)
String *role = role_example; //  (optional)
String *status = status_example; //  (optional)
String *name = name_example; //  (optional)
String *email = email_example; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get bidder sales for search filter
[apiInstance apiUserGetBidderSalesGetWith:agencyId
    branchId:branchId
    agentId:agentId
    role:role
    status:status
    name:name
    email:email
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'agencyId': agencyId_example, // {{String}} 
  'branchId': branchId_example, // {{String}} 
  'agentId': agentId_example, // {{String}} 
  'role': role_example, // {{String}} 
  'status': status_example, // {{String}} 
  'name': name_example, // {{String}} 
  'email': email_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetBidderSalesGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var agencyId = agencyId_example;  // String |  (optional) 
            var branchId = branchId_example;  // String |  (optional) 
            var agentId = agentId_example;  // String |  (optional) 
            var role = role_example;  // String |  (optional) 
            var status = status_example;  // String |  (optional) 
            var name = name_example;  // String |  (optional) 
            var email = email_example;  // String |  (optional) 

            try
            {
                // Get bidder sales for search filter
                apiInstance.apiUserGetBidderSalesGet(agencyId, branchId, agentId, role, status, name, email);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetBidderSalesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$agencyId = agencyId_example; // String | 
$branchId = branchId_example; // String | 
$agentId = agentId_example; // String | 
$role = role_example; // String | 
$status = status_example; // String | 
$name = name_example; // String | 
$email = email_example; // String | 

try {
    $api_instance->apiUserGetBidderSalesGet($agencyId, $branchId, $agentId, $role, $status, $name, $email);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetBidderSalesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $agencyId = agencyId_example; # String | 
my $branchId = branchId_example; # String | 
my $agentId = agentId_example; # String | 
my $role = role_example; # String | 
my $status = status_example; # String | 
my $name = name_example; # String | 
my $email = email_example; # String | 

eval { 
    $api_instance->apiUserGetBidderSalesGet(agencyId => $agencyId, branchId => $branchId, agentId => $agentId, role => $role, status => $status, name => $name, email => $email);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetBidderSalesGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
agencyId = agencyId_example # String |  (optional)
branchId = branchId_example # String |  (optional)
agentId = agentId_example # String |  (optional)
role = role_example # String |  (optional)
status = status_example # String |  (optional)
name = name_example # String |  (optional)
email = email_example # String |  (optional)

try: 
    # Get bidder sales for search filter
    api_instance.api_user_get_bidder_sales_get(agencyId=agencyId, branchId=branchId, agentId=agentId, role=role, status=status, name=name, email=email)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetBidderSalesGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
String
BranchId
String
AgentId
String
Role
String
Status
String
Name
String
Email
String

Responses

Status: 200 - Success


apiUserGetBiddersGet

Returns a list of bidders for a given Agency


/api/User/GetBidders

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetBidders?AgencyId=&BranchId=&AgentId=&Role=&Status=&Name=&Email="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        String agencyId = agencyId_example; // String | 
        String branchId = branchId_example; // String | 
        String agentId = agentId_example; // String | 
        String role = role_example; // String | 
        String status = status_example; // String | 
        String name = name_example; // String | 
        String email = email_example; // String | 
        try {
            apiInstance.apiUserGetBiddersGet(agencyId, branchId, agentId, role, status, name, email);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBiddersGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        String agencyId = agencyId_example; // String | 
        String branchId = branchId_example; // String | 
        String agentId = agentId_example; // String | 
        String role = role_example; // String | 
        String status = status_example; // String | 
        String name = name_example; // String | 
        String email = email_example; // String | 
        try {
            apiInstance.apiUserGetBiddersGet(agencyId, branchId, agentId, role, status, name, email);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBiddersGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *agencyId = agencyId_example; //  (optional)
String *branchId = branchId_example; //  (optional)
String *agentId = agentId_example; //  (optional)
String *role = role_example; //  (optional)
String *status = status_example; //  (optional)
String *name = name_example; //  (optional)
String *email = email_example; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Returns a list of bidders for a given Agency
[apiInstance apiUserGetBiddersGetWith:agencyId
    branchId:branchId
    agentId:agentId
    role:role
    status:status
    name:name
    email:email
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'agencyId': agencyId_example, // {{String}} 
  'branchId': branchId_example, // {{String}} 
  'agentId': agentId_example, // {{String}} 
  'role': role_example, // {{String}} 
  'status': status_example, // {{String}} 
  'name': name_example, // {{String}} 
  'email': email_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetBiddersGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var agencyId = agencyId_example;  // String |  (optional) 
            var branchId = branchId_example;  // String |  (optional) 
            var agentId = agentId_example;  // String |  (optional) 
            var role = role_example;  // String |  (optional) 
            var status = status_example;  // String |  (optional) 
            var name = name_example;  // String |  (optional) 
            var email = email_example;  // String |  (optional) 

            try
            {
                // Returns a list of bidders for a given Agency
                apiInstance.apiUserGetBiddersGet(agencyId, branchId, agentId, role, status, name, email);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetBiddersGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$agencyId = agencyId_example; // String | 
$branchId = branchId_example; // String | 
$agentId = agentId_example; // String | 
$role = role_example; // String | 
$status = status_example; // String | 
$name = name_example; // String | 
$email = email_example; // String | 

try {
    $api_instance->apiUserGetBiddersGet($agencyId, $branchId, $agentId, $role, $status, $name, $email);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetBiddersGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $agencyId = agencyId_example; # String | 
my $branchId = branchId_example; # String | 
my $agentId = agentId_example; # String | 
my $role = role_example; # String | 
my $status = status_example; # String | 
my $name = name_example; # String | 
my $email = email_example; # String | 

eval { 
    $api_instance->apiUserGetBiddersGet(agencyId => $agencyId, branchId => $branchId, agentId => $agentId, role => $role, status => $status, name => $name, email => $email);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetBiddersGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
agencyId = agencyId_example # String |  (optional)
branchId = branchId_example # String |  (optional)
agentId = agentId_example # String |  (optional)
role = role_example # String |  (optional)
status = status_example # String |  (optional)
name = name_example # String |  (optional)
email = email_example # String |  (optional)

try: 
    # Returns a list of bidders for a given Agency
    api_instance.api_user_get_bidders_get(agencyId=agencyId, branchId=branchId, agentId=agentId, role=role, status=status, name=name, email=email)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetBiddersGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
String
BranchId
String
AgentId
String
Role
String
Status
String
Name
String
Email
String

Responses

Status: 200 - Success


apiUserGetBranchUsersGet

Get All branchs or specific branches


/api/User/GetBranchUsers

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetBranchUsers?GroupId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiUserGetBranchUsersGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBranchUsersGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer groupId = 56; // Integer | 
        try {
            apiInstance.apiUserGetBranchUsersGet(groupId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBranchUsersGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *groupId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get All branchs or specific branches
[apiInstance apiUserGetBranchUsersGetWith:groupId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'groupId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetBranchUsersGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var groupId = 56;  // Integer |  (optional) 

            try
            {
                // Get All branchs or specific branches
                apiInstance.apiUserGetBranchUsersGet(groupId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetBranchUsersGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$groupId = 56; // Integer | 

try {
    $api_instance->apiUserGetBranchUsersGet($groupId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetBranchUsersGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $groupId = 56; # Integer | 

eval { 
    $api_instance->apiUserGetBranchUsersGet(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetBranchUsersGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
groupId = 56 # Integer |  (optional)

try: 
    # Get All branchs or specific branches
    api_instance.api_user_get_branch_users_get(groupId=groupId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetBranchUsersGet: %s\n" % e)

Parameters

Query parameters
Name Description
GroupId
Integer (int32)

Responses

Status: 200 - Success


apiUserGetBuyerAgentSalesGet

Get buyer agent sales


/api/User/GetBuyerAgentSales

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetBuyerAgentSales?Id=&Role="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer id = 56; // Integer | 
        String role = role_example; // String | 
        try {
            apiInstance.apiUserGetBuyerAgentSalesGet(id, role);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBuyerAgentSalesGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer id = 56; // Integer | 
        String role = role_example; // String | 
        try {
            apiInstance.apiUserGetBuyerAgentSalesGet(id, role);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetBuyerAgentSalesGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *id = 56; //  (optional)
String *role = role_example; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get buyer agent sales
[apiInstance apiUserGetBuyerAgentSalesGetWith:id
    role:role
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'id': 56, // {{Integer}} 
  'role': role_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetBuyerAgentSalesGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var id = 56;  // Integer |  (optional) 
            var role = role_example;  // String |  (optional) 

            try
            {
                // Get buyer agent sales
                apiInstance.apiUserGetBuyerAgentSalesGet(id, role);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetBuyerAgentSalesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$id = 56; // Integer | 
$role = role_example; // String | 

try {
    $api_instance->apiUserGetBuyerAgentSalesGet($id, $role);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetBuyerAgentSalesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $id = 56; # Integer | 
my $role = role_example; # String | 

eval { 
    $api_instance->apiUserGetBuyerAgentSalesGet(id => $id, role => $role);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetBuyerAgentSalesGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
id = 56 # Integer |  (optional)
role = role_example # String |  (optional)

try: 
    # Get buyer agent sales
    api_instance.api_user_get_buyer_agent_sales_get(id=id, role=role)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetBuyerAgentSalesGet: %s\n" % e)

Parameters

Query parameters
Name Description
Id
Integer (int32)
Role
String

Responses

Status: 200 - Success


apiUserGetGroupUserByIdGet

Get groupuser by user id


/api/User/GetGroupUserById

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetGroupUserById?UserId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiUserGetGroupUserByIdGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetGroupUserByIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiUserGetGroupUserByIdGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetGroupUserByIdGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *userId = userId_example; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get groupuser by user id
[apiInstance apiUserGetGroupUserByIdGetWith:userId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'userId': userId_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetGroupUserByIdGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var userId = userId_example;  // String |  (optional) 

            try
            {
                // Get groupuser by user id
                apiInstance.apiUserGetGroupUserByIdGet(userId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetGroupUserByIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$userId = userId_example; // String | 

try {
    $api_instance->apiUserGetGroupUserByIdGet($userId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetGroupUserByIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $userId = userId_example; # String | 

eval { 
    $api_instance->apiUserGetGroupUserByIdGet(userId => $userId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetGroupUserByIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
userId = userId_example # String |  (optional)

try: 
    # Get groupuser by user id
    api_instance.api_user_get_group_user_by_id_get(userId=userId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetGroupUserByIdGet: %s\n" % e)

Parameters

Query parameters
Name Description
UserId
String

Responses

Status: 200 - Success


apiUserGetGroupUsersGet

Get All the group users


/api/User/GetGroupUsers

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetGroupUsers"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        try {
            apiInstance.apiUserGetGroupUsersGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetGroupUsersGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        try {
            apiInstance.apiUserGetGroupUsersGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetGroupUsersGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

UserApi *apiInstance = [[UserApi alloc] init];

// Get All the group users
[apiInstance apiUserGetGroupUsersGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetGroupUsersGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();

            try
            {
                // Get All the group users
                apiInstance.apiUserGetGroupUsersGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetGroupUsersGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();

try {
    $api_instance->apiUserGetGroupUsersGet();
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetGroupUsersGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();

eval { 
    $api_instance->apiUserGetGroupUsersGet();
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetGroupUsersGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()

try: 
    # Get All the group users
    api_instance.api_user_get_group_users_get()
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetGroupUsersGet: %s\n" % e)

Parameters

Responses

Status: 200 - Success


apiUserGetSendGridStatsGet

Get sengrid stats


/api/User/GetSendGridStats

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetSendGridStats?SortBy=&StartDate=&EndDate="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        String sortBy = sortBy_example; // String | 
        String startDate = startDate_example; // String | 
        String endDate = endDate_example; // String | 
        try {
            apiInstance.apiUserGetSendGridStatsGet(sortBy, startDate, endDate);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetSendGridStatsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        String sortBy = sortBy_example; // String | 
        String startDate = startDate_example; // String | 
        String endDate = endDate_example; // String | 
        try {
            apiInstance.apiUserGetSendGridStatsGet(sortBy, startDate, endDate);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetSendGridStatsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *sortBy = sortBy_example; //  (optional)
String *startDate = startDate_example; //  (optional)
String *endDate = endDate_example; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get sengrid stats
[apiInstance apiUserGetSendGridStatsGetWith:sortBy
    startDate:startDate
    endDate:endDate
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'sortBy': sortBy_example, // {{String}} 
  'startDate': startDate_example, // {{String}} 
  'endDate': endDate_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetSendGridStatsGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var sortBy = sortBy_example;  // String |  (optional) 
            var startDate = startDate_example;  // String |  (optional) 
            var endDate = endDate_example;  // String |  (optional) 

            try
            {
                // Get sengrid stats
                apiInstance.apiUserGetSendGridStatsGet(sortBy, startDate, endDate);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetSendGridStatsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$sortBy = sortBy_example; // String | 
$startDate = startDate_example; // String | 
$endDate = endDate_example; // String | 

try {
    $api_instance->apiUserGetSendGridStatsGet($sortBy, $startDate, $endDate);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetSendGridStatsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $sortBy = sortBy_example; # String | 
my $startDate = startDate_example; # String | 
my $endDate = endDate_example; # String | 

eval { 
    $api_instance->apiUserGetSendGridStatsGet(sortBy => $sortBy, startDate => $startDate, endDate => $endDate);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetSendGridStatsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
sortBy = sortBy_example # String |  (optional)
startDate = startDate_example # String |  (optional)
endDate = endDate_example # String |  (optional)

try: 
    # Get sengrid stats
    api_instance.api_user_get_send_grid_stats_get(sortBy=sortBy, startDate=startDate, endDate=endDate)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetSendGridStatsGet: %s\n" % e)

Parameters

Query parameters
Name Description
SortBy
String
StartDate
String
EndDate
String

Responses

Status: 200 - Success


apiUserGetSolicitorGet

Returns a solicitor by User Id


/api/User/GetSolicitor

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetSolicitor?userId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer userId = 56; // Integer | 
        try {
            apiInstance.apiUserGetSolicitorGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetSolicitorGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer userId = 56; // Integer | 
        try {
            apiInstance.apiUserGetSolicitorGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetSolicitorGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *userId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Returns a solicitor by User Id
[apiInstance apiUserGetSolicitorGetWith:userId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'userId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetSolicitorGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var userId = 56;  // Integer |  (optional) 

            try
            {
                // Returns a solicitor by User Id
                apiInstance.apiUserGetSolicitorGet(userId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetSolicitorGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$userId = 56; // Integer | 

try {
    $api_instance->apiUserGetSolicitorGet($userId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetSolicitorGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $userId = 56; # Integer | 

eval { 
    $api_instance->apiUserGetSolicitorGet(userId => $userId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetSolicitorGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
userId = 56 # Integer |  (optional)

try: 
    # Returns a solicitor by User Id
    api_instance.api_user_get_solicitor_get(userId=userId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetSolicitorGet: %s\n" % e)

Parameters

Query parameters
Name Description
userId
Integer (int32)

Responses

Status: 200 - Success


apiUserGetSolicitorsGet

Returns a list of solicitors


/api/User/GetSolicitors

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetSolicitors"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        try {
            apiInstance.apiUserGetSolicitorsGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetSolicitorsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        try {
            apiInstance.apiUserGetSolicitorsGet();
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetSolicitorsGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

UserApi *apiInstance = [[UserApi alloc] init];

// Returns a list of solicitors
[apiInstance apiUserGetSolicitorsGetWithCompletionHandler: 
              ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetSolicitorsGet(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();

            try
            {
                // Returns a list of solicitors
                apiInstance.apiUserGetSolicitorsGet();
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetSolicitorsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();

try {
    $api_instance->apiUserGetSolicitorsGet();
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetSolicitorsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();

eval { 
    $api_instance->apiUserGetSolicitorsGet();
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetSolicitorsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()

try: 
    # Returns a list of solicitors
    api_instance.api_user_get_solicitors_get()
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetSolicitorsGet: %s\n" % e)

Parameters

Responses

Status: 200 - Success


apiUserGetUserGet

Get User by user id


/api/User/GetUser

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetUser?UserId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiUserGetUserGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetUserGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiUserGetUserGet(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetUserGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *userId = userId_example; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get User by user id
[apiInstance apiUserGetUserGetWith:userId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'userId': userId_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetUserGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var userId = userId_example;  // String |  (optional) 

            try
            {
                // Get User by user id
                apiInstance.apiUserGetUserGet(userId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetUserGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$userId = userId_example; // String | 

try {
    $api_instance->apiUserGetUserGet($userId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetUserGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $userId = userId_example; # String | 

eval { 
    $api_instance->apiUserGetUserGet(userId => $userId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetUserGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
userId = userId_example # String |  (optional)

try: 
    # Get User by user id
    api_instance.api_user_get_user_get(userId=userId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetUserGet: %s\n" % e)

Parameters

Query parameters
Name Description
UserId
String

Responses

Status: 200 - Success


apiUserGetbranchUsersForAgencyGet

Get branch users by agency id


/api/User/GetbranchUsersForAgency

Usage and SDK Samples

curl -X GET\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/GetbranchUsersForAgency?AgencyId="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiUserGetbranchUsersForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetbranchUsersForAgencyGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        Integer agencyId = 56; // Integer | 
        try {
            apiInstance.apiUserGetbranchUsersForAgencyGet(agencyId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserGetbranchUsersForAgencyGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
Integer *agencyId = 56; //  (optional)

UserApi *apiInstance = [[UserApi alloc] init];

// Get branch users by agency id
[apiInstance apiUserGetbranchUsersForAgencyGetWith:agencyId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var opts = { 
  'agencyId': 56 // {{Integer}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserGetbranchUsersForAgencyGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var agencyId = 56;  // Integer |  (optional) 

            try
            {
                // Get branch users by agency id
                apiInstance.apiUserGetbranchUsersForAgencyGet(agencyId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserGetbranchUsersForAgencyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$agencyId = 56; // Integer | 

try {
    $api_instance->apiUserGetbranchUsersForAgencyGet($agencyId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserGetbranchUsersForAgencyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $agencyId = 56; # Integer | 

eval { 
    $api_instance->apiUserGetbranchUsersForAgencyGet(agencyId => $agencyId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserGetbranchUsersForAgencyGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
agencyId = 56 # Integer |  (optional)

try: 
    # Get branch users by agency id
    api_instance.api_user_getbranch_users_for_agency_get(agencyId=agencyId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserGetbranchUsersForAgencyGet: %s\n" % e)

Parameters

Query parameters
Name Description
AgencyId
Integer (int32)

Responses

Status: 200 - Success


apiUserUnlockUserUserIdPost

Unlocks a user


/api/User/UnlockUser/{userId}

Usage and SDK Samples

curl -X POST\
 -H "Authorization: Bearer [[accessToken]]"\
"//api/User/UnlockUser/{userId}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.UserApi;

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

public class UserApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();


        UserApi apiInstance = new UserApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiUserUnlockUserUserIdPost(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserUnlockUserUserIdPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.UserApi;

public class UserApiExample {

    public static void main(String[] args) {
        UserApi apiInstance = new UserApi();
        String userId = userId_example; // String | 
        try {
            apiInstance.apiUserUnlockUserUserIdPost(userId);
        } catch (ApiException e) {
            System.err.println("Exception when calling UserApi#apiUserUnlockUserUserIdPost");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];
String *userId = userId_example; // 

UserApi *apiInstance = [[UserApi alloc] init];

// Unlocks a user
[apiInstance apiUserUnlockUserUserIdPostWith:userId
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var BeagelEnterprise = require('beagel_enterprise');
var defaultClient = BeagelEnterprise.ApiClient.instance;


var api = new BeagelEnterprise.UserApi()
var userId = userId_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.apiUserUnlockUserUserIdPost(userId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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


            var apiInstance = new UserApi();
            var userId = userId_example;  // String | 

            try
            {
                // Unlocks a user
                apiInstance.apiUserUnlockUserUserIdPost(userId);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UserApi.apiUserUnlockUserUserIdPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');


$api_instance = new Swagger\Client\ApiUserApi();
$userId = userId_example; // String | 

try {
    $api_instance->apiUserUnlockUserUserIdPost($userId);
} catch (Exception $e) {
    echo 'Exception when calling UserApi->apiUserUnlockUserUserIdPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::UserApi;


my $api_instance = WWW::SwaggerClient::UserApi->new();
my $userId = userId_example; # String | 

eval { 
    $api_instance->apiUserUnlockUserUserIdPost(userId => $userId);
};
if ($@) {
    warn "Exception when calling UserApi->apiUserUnlockUserUserIdPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint


# create an instance of the API class
api_instance = swagger_client.UserApi()
userId = userId_example # String | 

try: 
    # Unlocks a user
    api_instance.api_user_unlock_user_user_id_post(userId)
except ApiException as e:
    print("Exception when calling UserApi->apiUserUnlockUserUserIdPost: %s\n" % e)

Parameters

Path parameters
Name Description
userId*
String
Required

Responses

Status: 200 - Success