postnl-ecommerce-sdk


Namepostnl-ecommerce-sdk JSON
Version 1.0.3 PyPI version JSON
download
home_pageNone
SummaryCollection of PostNL API's for ecommerce processes.
upload_time2024-05-06 10:07:16
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords postnl sdk api ecommerce
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# Getting Started with Postnl-Ecommerce

## Introduction

<div><p><b>PostNL Ecommerce APIs</b></p><p>Explore our technical documentation, test your integration and go live with PostNL service.</p><p><b>Start using PostNL APIs for e-commerce processes</b></p><p>To get to know the PostNL APIs better, read all about it in our <a href='https://developer.postnl.nl/api-overview/'>API overview</a>. Learn everything you need to about our API's before embarking on integration with PostNL.</p><p>To connect to PostNL, you can request an API key via <a href='https://mijn.postnl.nl/c/BP2_Mod_Login.app?inresponseto=&RelayState=&startURL=%2F'>Mijn PostNL</a> portal. Choose your APIs and build your integration. Explore our guides, examples, and resources to guide you through each phase of integration and start testing. Ensure that you can make successful test calls towards all endpoints used in the solution.</p><p>Contact our integrations team to have your test calls reviewed and gain access to our API production environment. Once everything is configured and validated, you'll be ready to go live and start using the PostNL service.</p><p>For help contact us via our support form: <a href='https://developer.postnl.nl/support/form/'>Need help? Submit a case | PostNL</a>.</p></div>


## Install the Package

The package is compatible with Python versions `3 >=3.7, <= 3.11`.
Install the package from PyPi using the following pip command:

```python
pip install postnl-ecommerce-sdk==1.0.3
```

You can also view the package at:
https://pypi.python.org/pypi/postnl-ecommerce-sdk/1.0.3

## Test the SDK

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

Navigate to the root directory of the SDK and run the following commands

```
pip install -r test-requirements.txt
pytest
```

## Initialize the API Client

**_Note:_** Documentation for the client can be found [here.](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/client.md)

The following parameters are configurable for the API Client:

| Parameter | Type | Description |
|  --- | --- | --- |
| `environment` | `Environment` | The API environment. <br> **Default: `Environment.PRODUCTION_SERVER`** |
| `http_client_instance` | `HttpClient` | 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. <br> **Default: 60** |
| `max_retries` | `int` | The number of times to retry an endpoint call if it fails. <br> **Default: 3** |
| `backoff_factor` | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** |
| `retry_statuses` | `Array of int` | The http statuses on which retry is to be done. <br> **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. <br> **Default: ['GET', 'PUT']** |
| `custom_header_authentication_credentials` | [`CustomHeaderAuthenticationCredentials`](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/$a/https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/custom-header-signature.md) | The credential object for Custom Header Signature |

The API client can be initialized as follows:

```python
client = PostnlecommerceClient(
    custom_header_authentication_credentials=CustomHeaderAuthenticationCredentials(
        apikey='apikey'
    )
)
```

API calls return an `ApiResponse` object that includes the following fields:

| Field | Description |
|  --- | --- |
| `status_code` | Status code of the HTTP response |
| `reason_phrase` | Reason phrase of the HTTP response |
| `headers` | Headers of the HTTP response as a dictionary |
| `text` | The body of the HTTP response as a string |
| `request` | HTTP request info |
| `errors` | Errors, if they exist |
| `body` | The deserialized body of the HTTP response |

## Environments

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

### Fields

| Name | Description |
|  --- | --- |
| Production server | **Default** Production server |
| Non-Production server | Sandbox environment for testing |

## Authorization

This API uses the following authentication schemes.

* [`APIKeyHeader (Custom Header Signature)`](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/$a/https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/custom-header-signature.md)

## List of APIs

* [Postalcodecheck](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/postalcodecheck.md)
* [Barcode](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/barcode.md)
* [Checkout](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/checkout.md)
* [Confirming](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/confirming.md)
* [Deliverydate](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/deliverydate.md)
* [Labelling](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/labelling.md)
* [Locations](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/locations.md)
* [Shipment](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/shipment.md)
* [Shipping Status](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/shipping-status.md)
* [Timeframes](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/timeframes.md)

## Classes Documentation

* [Utility Classes](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/utility-classes.md)
* [HttpResponse](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/http-response.md)
* [HttpRequest](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/http-request.md)


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "postnl-ecommerce-sdk",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "PostNL, SDK, API, ecommerce",
    "author": null,
    "author_email": "PostNL <apimatic@postnl.nl>",
    "download_url": "https://files.pythonhosted.org/packages/8f/36/ec12ac4dc97f57b6b34284c3ff181a92e084bdd42957792cd9fb1c51de64/postnl_ecommerce_sdk-1.0.3.tar.gz",
    "platform": null,
    "description": "\n# Getting Started with Postnl-Ecommerce\n\n## Introduction\n\n<div><p><b>PostNL Ecommerce APIs</b></p><p>Explore our technical documentation, test your integration and go live with PostNL service.</p><p><b>Start using PostNL APIs for e-commerce processes</b></p><p>To get to know the PostNL APIs better, read all about it in our <a href='https://developer.postnl.nl/api-overview/'>API overview</a>. Learn everything you need to about our API's before embarking on integration with PostNL.</p><p>To connect to PostNL, you can request an API key via <a href='https://mijn.postnl.nl/c/BP2_Mod_Login.app?inresponseto=&RelayState=&startURL=%2F'>Mijn PostNL</a> portal. Choose your APIs and build your integration. Explore our guides, examples, and resources to guide you through each phase of integration and start testing. Ensure that you can make successful test calls towards all endpoints used in the solution.</p><p>Contact our integrations team to have your test calls reviewed and gain access to our API production environment. Once everything is configured and validated, you'll be ready to go live and start using the PostNL service.</p><p>For help contact us via our support form: <a href='https://developer.postnl.nl/support/form/'>Need help? Submit a case | PostNL</a>.</p></div>\n\n\n## Install the Package\n\nThe package is compatible with Python versions `3 >=3.7, <= 3.11`.\nInstall the package from PyPi using the following pip command:\n\n```python\npip install postnl-ecommerce-sdk==1.0.3\n```\n\nYou can also view the package at:\nhttps://pypi.python.org/pypi/postnl-ecommerce-sdk/1.0.3\n\n## Test the SDK\n\nYou can test the generated SDK and the server with test cases. `unittest` is used as the testing framework and `pytest` is used as the test runner. You can run the tests as follows:\n\nNavigate to the root directory of the SDK and run the following commands\n\n```\npip install -r test-requirements.txt\npytest\n```\n\n## Initialize the API Client\n\n**_Note:_** Documentation for the client can be found [here.](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/client.md)\n\nThe following parameters are configurable for the API Client:\n\n| Parameter | Type | Description |\n|  --- | --- | --- |\n| `environment` | `Environment` | The API environment. <br> **Default: `Environment.PRODUCTION_SERVER`** |\n| `http_client_instance` | `HttpClient` | The Http Client passed from the sdk user for making requests |\n| `override_http_client_configuration` | `bool` | The value which determines to override properties of the passed Http Client from the sdk user |\n| `http_call_back` | `HttpCallBack` | The callback value that is invoked before and after an HTTP call is made to an endpoint |\n| `timeout` | `float` | The value to use for connection timeout. <br> **Default: 60** |\n| `max_retries` | `int` | The number of times to retry an endpoint call if it fails. <br> **Default: 3** |\n| `backoff_factor` | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** |\n| `retry_statuses` | `Array of int` | The http statuses on which retry is to be done. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |\n| `retry_methods` | `Array of string` | The http methods on which retry is to be done. <br> **Default: ['GET', 'PUT']** |\n| `custom_header_authentication_credentials` | [`CustomHeaderAuthenticationCredentials`](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/$a/https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/custom-header-signature.md) | The credential object for Custom Header Signature |\n\nThe API client can be initialized as follows:\n\n```python\nclient = PostnlecommerceClient(\n    custom_header_authentication_credentials=CustomHeaderAuthenticationCredentials(\n        apikey='apikey'\n    )\n)\n```\n\nAPI calls return an `ApiResponse` object that includes the following fields:\n\n| Field | Description |\n|  --- | --- |\n| `status_code` | Status code of the HTTP response |\n| `reason_phrase` | Reason phrase of the HTTP response |\n| `headers` | Headers of the HTTP response as a dictionary |\n| `text` | The body of the HTTP response as a string |\n| `request` | HTTP request info |\n| `errors` | Errors, if they exist |\n| `body` | The deserialized body of the HTTP response |\n\n## Environments\n\nThe SDK can be configured to use a different environment for making API calls. Available environments are:\n\n### Fields\n\n| Name | Description |\n|  --- | --- |\n| Production server | **Default** Production server |\n| Non-Production server | Sandbox environment for testing |\n\n## Authorization\n\nThis API uses the following authentication schemes.\n\n* [`APIKeyHeader (Custom Header Signature)`](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/$a/https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/custom-header-signature.md)\n\n## List of APIs\n\n* [Postalcodecheck](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/postalcodecheck.md)\n* [Barcode](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/barcode.md)\n* [Checkout](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/checkout.md)\n* [Confirming](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/confirming.md)\n* [Deliverydate](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/deliverydate.md)\n* [Labelling](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/labelling.md)\n* [Locations](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/locations.md)\n* [Shipment](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/shipment.md)\n* [Shipping Status](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/shipping-status.md)\n* [Timeframes](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/controllers/timeframes.md)\n\n## Classes Documentation\n\n* [Utility Classes](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/utility-classes.md)\n* [HttpResponse](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/http-response.md)\n* [HttpRequest](https://www.github.com/postnl/postnl-ecommerce-sdk-python/tree/1.0.3/doc/http-request.md)\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Collection of PostNL API's for ecommerce processes.",
    "version": "1.0.3",
    "project_urls": {
        "Documentation": "https://developer.postnl.nl/docs"
    },
    "split_keywords": [
        "postnl",
        " sdk",
        " api",
        " ecommerce"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9183cd18d6ba5a30cff7df46d6e45dd7c34f752a28679a0fa68db0d15ce9332c",
                "md5": "657c44ad994a5a608bb6f0deb02750f4",
                "sha256": "9fc25ff1c908c7fb41a2ea3a626ce1d9999a137dd2cf1d7eed9de1769050a310"
            },
            "downloads": -1,
            "filename": "postnl_ecommerce_sdk-1.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "657c44ad994a5a608bb6f0deb02750f4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 179219,
            "upload_time": "2024-05-06T10:07:14",
            "upload_time_iso_8601": "2024-05-06T10:07:14.090868Z",
            "url": "https://files.pythonhosted.org/packages/91/83/cd18d6ba5a30cff7df46d6e45dd7c34f752a28679a0fa68db0d15ce9332c/postnl_ecommerce_sdk-1.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f36ec12ac4dc97f57b6b34284c3ff181a92e084bdd42957792cd9fb1c51de64",
                "md5": "a8c006b0b8176bafa249cc7f35dc9cb3",
                "sha256": "8f5e29dadcfe5fc73eb317dfe375b678b733f4d30e9263708ffdd7beb7fa66f6"
            },
            "downloads": -1,
            "filename": "postnl_ecommerce_sdk-1.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "a8c006b0b8176bafa249cc7f35dc9cb3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 57153,
            "upload_time": "2024-05-06T10:07:16",
            "upload_time_iso_8601": "2024-05-06T10:07:16.003536Z",
            "url": "https://files.pythonhosted.org/packages/8f/36/ec12ac4dc97f57b6b34284c3ff181a92e084bdd42957792cd9fb1c51de64/postnl_ecommerce_sdk-1.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-06 10:07:16",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "postnl-ecommerce-sdk"
}
        
Elapsed time: 0.25573s