PassHub API Client
Project description
PassHub API Client
PassHub API documentation
Access PassHub with Python. This module offers high level and low level calls to the API.
Requirements.
Python 2.7 and 3.4+
Installation & Usage
pip install
If the python package is hosted on Github, you can install directly from Github
pip install sightseeingtech_passhub_api
(you may need to run pip with root permission: sudo pip install sightseeingtech_passhub_api)
Then import the package:
import sightseeingtech_passhub_api
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install to install the package for all users)
Then import the package:
import sightseeingtech_passhub_api
Getting Started
Please follow the installation procedure and then run the following:
from __future__ import print_function
import time
import sightseeingtech_passhub_api
from sightseeingtech_passhub_api.rest import ApiException
from pprint import pprint
configuration = Configuration()
configuration.api_key['X-Api-Key'] = 'YOUR_API_KEY'
configuration.host = 'YOUR_HOST'
configuration.verify_ssl = False
client = ApiClient(configuration)
try:
productResourceApi = sightseeingtech_passhub_api.ProductResourceApi(client)
print('Loading products...')
products = productResourceApi.get_all_products()
print('Product %d products is/are loaded.\n' % len(products))
except ApiException as e:
print("Exception when calling ProductResourceApi->get_all_products: %s\n" % e)
Documentation for API Endpoints
| Class | Method | HTTP request | Description |
|---|---|---|---|
| OrderRecordResourceApi | createOrderRecord | POST /api/v1/orderRecords | createOrderRecord |
| OrderRecordResourceApi | getAllOrderRecords | GET /api/v2/orderRecords | getAllOrderRecords |
| OrderRecordResourceApi | getOrderRecord | GET /api/v1/orderRecords/{id} | getOrderRecord |
| OrderRecordResourceApi | mergeVouchers | POST /api/v1/orderRecords/mergeVouchers | mergeVouchers |
| OrderRecordResourceApi | updateOrderRecord) | PUT /api/v1/orderRecords | updateOrderRecord |
| ProductResourceApi | findProductsByVendor | GET /api/v1/products/vendor/{vendorId} | findProductsByVendor |
| ProductResourceApi | getAllProducts | GET /api/v2/products | getAllProducts |
| VendorResourceApi | getAllVendors | GET /api/v2/vendors | getAllVendors |
| VoucherResourceApi | cancelValidation | POST /api/v2/voucher/validate/cancel | V2 Cancel validation for the voucher |
| VoucherResourceApi | cancelVoucher | POST /api/v1/voucher/cancel | cancelVoucher |
| VoucherResourceApi | convertVoucher | POST /api/v1/voucher/convert | convertVoucher |
| VoucherResourceApi | validateVoucher | POST /api/v2/voucher/validate | [V2 Validates voucher which represents single order item or group of them. |
Documentation For Authorization
X-Api-Key
- Type: API key
- API key parameter name: X-Api-Key
- Location: HTTP header
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sightseeingtech-passhub-api-1.0.0.tar.gz.
File metadata
- Download URL: sightseeingtech-passhub-api-1.0.0.tar.gz
- Upload date:
- Size: 42.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec3c666bbac73c31a7a29b1e127aeb9f5db6f85abd7722949f83bdb27ffd0c72
|
|
| MD5 |
6703458a009570c2624df612fde8b2c1
|
|
| BLAKE2b-256 |
92319ac8b72ab7bbafd3720cafb01df2f3158fd084016f09d3a67ced1249725e
|
File details
Details for the file sightseeingtech_passhub_api-1.0.0-py3-none-any.whl.
File metadata
- Download URL: sightseeingtech_passhub_api-1.0.0-py3-none-any.whl
- Upload date:
- Size: 85.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6559a3d6a11192f63c6ed60aa09805f7571683112c2eed992345b4684ab89b0b
|
|
| MD5 |
91c0f7634b0b4baf4b95ab9e5c6888da
|
|
| BLAKE2b-256 |
64c93047204301db3591547058858955cc85d9fb86a9ffb8363d60ef38cdd084
|