tangocard-raasv2

With this RESTful API you can integrate a global reward or incentive program into your app or platform. If you have any questions or if you'd like to receive your own credentials, please contact us at devsupport@tangocard.com.


Keywords
python, raas, tangocard
License
Other
Install
pip install tangocard-raasv2==1.0.0b2

Documentation

Getting started

How to Use

You can install this package via PIP pip install tangocard-raasv2

How to Build

You must have Python 2 >=2.7.9 or Python 3 >=3.4 installed on your system to install and run this SDK. This SDK package depends on other Python packages like nose, jsonpickle etc. These dependencies are defined in the requirements.txt file that comes with the SDK. To resolve these dependencies, you can use the PIP Dependency manager. Install it by following steps at https://pip.pypa.io/en/stable/installing/.

Python and PIP executables should be defined in your PATH. Open command prompt and type pip --version. This should display the version of the PIP Dependency Manager installed if your installation was successful and the paths are properly defined.

  • Using command line, navigate to the directory containing the generated files (including requirements.txt) for the SDK.
  • Run the command pip install -r requirements.txt. This should install all the required dependencies.

Building SDK - Step 1

How to Use

The following section explains how to use the RaaSV2 SDK package in a new project.

1. Open Project in an IDE

Open up a Python IDE like PyCharm. The basic workflow presented here is also applicable if you prefer using a different editor or IDE.

Open project in PyCharm - Step 1

Click on Open in PyCharm to browse to your generated SDK directory and then click OK.

Open project in PyCharm - Step 2

The project files will be displayed in the side bar as follows:

Open project in PyCharm - Step 3

2. Add a new Test Project

Create a new directory by right clicking on the solution name as shown below:

Add a new project in PyCharm - Step 1

Name the directory as "test"

Add a new project in PyCharm - Step 2

Add a python file to this project with the name "testsdk"

Add a new project in PyCharm - Step 3

Name it "testsdk"

Add a new project in PyCharm - Step 4

In your python file you will be required to import the generated python library using the following code lines

from raas_v2.raasv2_client import *

Add a new project in PyCharm - Step 4

After this you can write code to instantiate an API client object, get a controller object and make API calls. Sample code is given in the subsequent sections.

3. Run the Test Project

To run the file within your test project, right click on your Python file inside your Test project and click on Run

Run Test Project - Step 1

How to Test

You can test the generated SDK and the server with automatically generated test cases. unittest is used as the testing framework and nose is used as the test runner. You can run the tests as follows:

  1. From terminal/cmd navigate to the root directory of the SDK.
  2. Invoke 'pip install -r test-requirements.txt'
  3. Invoke 'nosetests'

Initialization

Authentication

In order to setup authentication and initialization of the API client, you need the following information.

Parameter Description
platform_name RaaS v2 API Platform Name
platform_key RaaS v2 API Platform Key

API client can be initialized as following.

# Configuration parameters and credentials
platform_name = "QAPlatform2" # RaaS v2 API Platform Name
platform_key = "apYPfT6HNONpDRUj3CLGWYt7gvIHONpDRUYPfT6Hj" # RaaS v2 API Platform Key

client = RaaSV2Client(platform_name, platform_key)

Class Reference

List of Controllers

Class: AccountsController

Get controller instance

An instance of the AccountsController class can be accessed from the API Client.

 accounts_client = client.accounts

Method: get_accounts_by_customer

Gets a list of accounts for a given customer

def get_accounts_by_customer(self,
                                 customer_identifier)

Parameters

Parameter Tags Description
customerIdentifier Required Customer Identifier

Example Usage

customer_identifier = 'customerIdentifier'

result = accounts_client.get_accounts_by_customer(customer_identifier)

Method: get_account

Get an account

def get_account(self,
                    account_identifier)

Parameters

Parameter Tags Description
accountIdentifier Required Account Identifier

Example Usage

account_identifier = 'accountIdentifier'

result = accounts_client.get_account(account_identifier)

Method: create_account

Create an account under a given customer

def create_account(self,
                       customer_identifier,
                       body)

Parameters

Parameter Tags Description
customerIdentifier Required Customer Identifier
body Required Request Body

Example Usage

customer_identifier = 'customerIdentifier'
body = CreateAccountRequestModel()

result = accounts_client.create_account(customer_identifier, body)

Method: get_all_accounts

Gets all accounts under the platform

def get_all_accounts(self)

Example Usage

result = accounts_client.get_all_accounts()

Back to List of Controllers

Class: OrdersController

Get controller instance

An instance of the OrdersController class can be accessed from the API Client.

 orders_client = client.orders

Method: create_order

TODO: Add a method description

def create_order(self,
                     body)

Parameters

Parameter Tags Description
body Required TODO: Add a parameter description

Example Usage

body = CreateOrderRequestModel()

result = orders_client.create_order(body)

Method: get_order

TODO: Add a method description

def get_order(self,
                  reference_order_id)

Parameters

Parameter Tags Description
referenceOrderID Required Reference Order ID

Example Usage

reference_order_id = 'referenceOrderID'

result = orders_client.get_order(reference_order_id)

Method: create_resend_order

TODO: Add a method description

def create_resend_order(self,
                            reference_order_id)

Parameters

Parameter Tags Description
referenceOrderID Required TODO: Add a parameter description

Example Usage

reference_order_id = 'referenceOrderID'

result = orders_client.create_resend_order(reference_order_id)

Method: get_orders

TODO: Add a method description

def get_orders(self,
                   options=dict())

Parameters

Parameter Tags Description
accountIdentifier Optional TODO: Add a parameter description
customerIdentifier Optional TODO: Add a parameter description
externalRefID Optional TODO: Add a parameter description
startDate Optional TODO: Add a parameter description
endDate Optional TODO: Add a parameter description
elementsPerBlock Optional TODO: Add a parameter description
page Optional TODO: Add a parameter description

Example Usage

collect = {}

account_identifier = 'accountIdentifier'
collect['account_identifier'] = account_identifier

customer_identifier = 'customerIdentifier'
collect['customer_identifier'] = customer_identifier

external_ref_id = 'externalRefID'
collect['external_ref_id'] = external_ref_id

start_date = datetime.now()
collect['start_date'] = start_date

end_date = datetime.now()
collect['end_date'] = end_date

elements_per_block = 106
collect['elements_per_block'] = elements_per_block

page = 106
collect['page'] = page


result = orders_client.get_orders(collect)

Back to List of Controllers

Class: CatalogController

Get controller instance

An instance of the CatalogController class can be accessed from the API Client.

 catalog_client = client.catalog

Method: get_catalog

Get Catalog

def get_catalog(self)

Example Usage

result = catalog_client.get_catalog()

Back to List of Controllers

Class: ExchangeRatesController

Get controller instance

An instance of the ExchangeRatesController class can be accessed from the API Client.

 exchange_rates_client = client.exchange_rates

Method: get_exchange_rates

Retrieve current exchange rates

def get_exchange_rates(self)

Example Usage

exchange_rates_client.get_exchange_rates()

Back to List of Controllers

Class: StatusController

Get controller instance

An instance of the StatusController class can be accessed from the API Client.

 status_client = client.status

Method: get_system_status

Tags: Skips Authentication

Retrieve system status

def get_system_status(self)

Example Usage

result = status_client.get_system_status()

Back to List of Controllers

Class: CustomersController

Get controller instance

An instance of the CustomersController class can be accessed from the API Client.

 customers_client = client.customers

Method: get_customer

Get a customer

def get_customer(self,
                     customer_identifier)

Parameters

Parameter Tags Description
customerIdentifier Required Customer Identifier

Example Usage

customer_identifier = 'customerIdentifier'

result = customers_client.get_customer(customer_identifier)

Method: create_customer

Create a new customer

def create_customer(self,
                        body)

Parameters

Parameter Tags Description
body Required Request Body

Example Usage

body = CreateCustomerRequestModel()

result = customers_client.create_customer(body)

Method: get_all_customers

Gets all customers under the platform

def get_all_customers(self)

Example Usage

result = customers_client.get_all_customers()

Back to List of Controllers