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.3

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

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.3.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.3-py3-none-any.whl (138.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: loyalty_sdk-0.0.3.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.3.tar.gz
Algorithm Hash digest
SHA256 5ffe32ba6f2f7760fc6492b9e247eb0e7847152e25155c612f7f68299af85755
MD5 fce006663bc2f47cd4ab7de1a5609261
BLAKE2b-256 e0c36e0143ec985350fac3e449885ace3fc1e9d32d67747b176835ca1e58df3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: loyalty_sdk-0.0.3-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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 62ad88d29c746aada3eb14365e5a1cbed3f01327aab907ea1650cfcf8714b63e
MD5 347c03893cc07ab747245e255aa84d5e
BLAKE2b-256 268f3280d719793f39417d402c13da6623e973c91ff60718d62e361471984033

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