Getting Started with Socure RiskOS™ API
Introduction
RiskOS™ documentation site is Socure confidential and proprietary information, and is only intended for viewing by authorized persons.
The Socure RiskOS™ APIs provide a unified API framework for risk evaluation. They use predictable, resource-oriented URLs, accept JSON-formatted request bodies, return JSON-formatted responses, and follow standard HTTP methods, status codes, and authentication practices.
You can test RiskOS™ APIs in the Sandbox environment, which allows you to simulate requests without impacting live data. The request endpoint determines whether the request is directed to the Sandbox or Production (live) environment.
Install the Package
The package is compatible with Python versions 3.7+.
Install the package from PyPi using the following pip command:
pip install sc-apimatic-sdk==0.0.1
You can also view the package at: https://pypi.python.org/pypi/sc-apimatic-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.PRODUCTION |
| 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 |
| bearer_auth_credentials | BearerAuthCredentials |
The credential object for OAuth 2 Bearer token |
The API client can be initialized as follows:
Code-Based Client Initialization
import logging
from socureriskosapi.configuration import Environment
from socureriskosapi.http.auth.oauth_2 import BearerAuthCredentials
from socureriskosapi.logging.configuration.api_logging_configuration import LoggingConfiguration
from socureriskosapi.logging.configuration.api_logging_configuration import RequestLoggingConfiguration
from socureriskosapi.logging.configuration.api_logging_configuration import ResponseLoggingConfiguration
from socureriskosapi.socureriskosapi_client import SocureriskosapiClient
client = SocureriskosapiClient(
bearer_auth_credentials=BearerAuthCredentials(
access_token='AccessToken'
),
environment=Environment.PRODUCTION,
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 socureriskosapi.socureriskosapi_client import SocureriskosapiClient
# Specify the path to your .env file if it’s located outside the project’s root directory.
client = SocureriskosapiClient.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 |
|---|---|
| PRODUCTION | Default Production server (versioned) |
| ENVIRONMENT2 | Sandbox server (for testing and development, versioned) |
Authorization
This API uses the following authentication schemes.
List of APIs
SDK Infrastructure
Configuration
- ProxySettings
- Environment-Based Client Initialization
- AbstractLogger
- LoggingConfiguration
- RequestLoggingConfiguration
- ResponseLoggingConfiguration
HTTP
Utilities
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 sc_apimatic_sdk-0.0.1.tar.gz.
File metadata
- Download URL: sc_apimatic_sdk-0.0.1.tar.gz
- Upload date:
- Size: 87.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84cbf77134574f7e294e5d60891913b187b9a77fdc3071e7e69f25058bb67e5e
|
|
| MD5 |
d16bd6e648e9cba078a86ae9cdefdaf9
|
|
| BLAKE2b-256 |
1d30be435a53685944c0d09638ea5c82b048061abb8d10f5929e082a24f628cf
|
File details
Details for the file sc_apimatic_sdk-0.0.1-py3-none-any.whl.
File metadata
- Download URL: sc_apimatic_sdk-0.0.1-py3-none-any.whl
- Upload date:
- Size: 206.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20ede89005ad1c8e9577af9d27901d8e4a7ac3625029d7f0cd770c08a18d341a
|
|
| MD5 |
222f1761cfc3425617b0170e0fdf4c2d
|
|
| BLAKE2b-256 |
7c91ff6d331d7292acd010216557c7f92152ff334c43c03e9d59dc551b9e48b1
|