Skip to main content

Loyalty APIs provides the end points needed in order to generate the user Authorization Tokens, manage offers assigned to a user, and retrieve the Loyalty Points balance of users.

Project description

Getting Started with Loyalty APIs

Introduction

Loyalty Account Management provides the end points needed in order to generate the user Authorization Tokens which will provide access to the Loyalty APIs and also to update the user profile.

Install the Package

The package is compatible with Python versions 3.7+. Install the package from PyPi using the following pip command:

pip install loyalty-sdk==0.0.1

You can also view the package at: https://pypi.python.org/pypi/loyalty-sdk/0.0.1

Initialize the API Client

Note: Documentation for the client can be found here.

The following parameters are configurable for the API Client:

Parameter Type Description
environment Environment The API environment.
Default: Environment.SIT
http_client_instance Union[Session, HttpClientProvider] The Http Client passed from the sdk user for making requests
override_http_client_configuration bool The value which determines to override properties of the passed Http Client from the sdk user
http_call_back HttpCallBack The callback value that is invoked before and after an HTTP call is made to an endpoint
timeout float The value to use for connection timeout.
Default: 30
max_retries int The number of times to retry an endpoint call if it fails.
Default: 0
backoff_factor float A backoff factor to apply between attempts after the second try.
Default: 2
retry_statuses Array of int The http statuses on which retry is to be done.
Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]
retry_methods Array of string The http methods on which retry is to be done.
Default: ["GET", "PUT"]
proxy_settings ProxySettings Optional proxy configuration to route HTTP requests through a proxy server.
logging_configuration LoggingConfiguration The SDK logging configuration for API calls
public_bearer_token_credentials PublicBearerTokenCredentials The credential object for OAuth 2 Bearer token
public_basic_token_credentials PublicBasicTokenCredentials The credential object for Custom Header Signature
private_basic_token_credentials PrivateBasicTokenCredentials The credential object for Custom Header Signature
client_authorization_token_credentials ClientAuthorizationTokenCredentials The credential object for OAuth 2 Client Credentials Grant
customer_header_credentials CustomerHeaderCredentials The credential object for Custom Header Signature

The API client can be initialized as follows:

Code-Based Client Initialization

import logging

from loyaltyapis.configuration import Environment
from loyaltyapis.http.auth.client_authorization_token import ClientAuthorizationTokenCredentials
from loyaltyapis.http.auth.customer_header import CustomerHeaderCredentials
from loyaltyapis.http.auth.private_basic_token import PrivateBasicTokenCredentials
from loyaltyapis.http.auth.public_basic_token import PublicBasicTokenCredentials
from loyaltyapis.http.auth.public_bearer_token import PublicBearerTokenCredentials
from loyaltyapis.logging.configuration.api_logging_configuration import LoggingConfiguration
from loyaltyapis.logging.configuration.api_logging_configuration import RequestLoggingConfiguration
from loyaltyapis.logging.configuration.api_logging_configuration import ResponseLoggingConfiguration
from loyaltyapis.loyaltyapis_client import LoyaltyapisClient

client = LoyaltyapisClient(
    public_bearer_token_credentials=PublicBearerTokenCredentials(
        access_token='AccessToken'
    ),
    public_basic_token_credentials=PublicBasicTokenCredentials(
        public_basic_token='Public Basic Token'
    ),
    private_basic_token_credentials=PrivateBasicTokenCredentials(
        public_basic_token='Public Basic Token'
    ),
    client_authorization_token_credentials=ClientAuthorizationTokenCredentials(
        oauth_client_id='OAuthClientId',
        oauth_client_secret='OAuthClientSecret'
    ),
    customer_header_credentials=CustomerHeaderCredentials(
        authorization_token='Authorization-Token'
    ),
    environment=Environment.SIT,
    logging_configuration=LoggingConfiguration(
        log_level=logging.INFO,
        request_logging_config=RequestLoggingConfiguration(
            log_body=True
        ),
        response_logging_config=ResponseLoggingConfiguration(
            log_headers=True
        )
    )
)

Environment-Based Client Initialization

from loyaltyapis.loyaltyapis_client import LoyaltyapisClient

# Specify the path to your .env file if it’s located outside the project’s root directory.
client = LoyaltyapisClient.from_environment(dotenv_path='/path/to/.env')

See the Environment-Based Client Initialization section for details.

Environments

The SDK can be configured to use a different environment for making API calls. Available environments are:

Fields

Name Description
SIT Default
PRODUCTION -
UAT -

Authorization

This API uses the following authentication schemes.

List of APIs

SDK Infrastructure

Configuration

HTTP

Utilities

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

loyalty_sdk-0.0.1.tar.gz (56.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

loyalty_sdk-0.0.1-py3-none-any.whl (138.9 kB view details)

Uploaded Python 3

File details

Details for the file loyalty_sdk-0.0.1.tar.gz.

File metadata

  • Download URL: loyalty_sdk-0.0.1.tar.gz
  • Upload date:
  • Size: 56.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.13

File hashes

Hashes for loyalty_sdk-0.0.1.tar.gz
Algorithm Hash digest
SHA256 c30ede65b93d06788db0d81c4a17e82fd3fa0b97a4c4728b805a013d57e736a1
MD5 e204ce979d3689ef82bcc6641f6de8c3
BLAKE2b-256 0abe704a22e19926df514569b6ccc9156b9298eedd4effcfee33ffaaa0e2b07a

See more details on using hashes here.

File details

Details for the file loyalty_sdk-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: loyalty_sdk-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 138.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.13

File hashes

Hashes for loyalty_sdk-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0285f1a3d241d50785aca65ffd6ff03cb5a91b7309c71dadb2e0fcc472ceb92a
MD5 2dafa50730831ada400ba15a030f0ea4
BLAKE2b-256 76c0f1b0d26cfc237e1347939be02b8c45613805df15e3e2c1e2b0b09cd3f076

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page