creditas


Namecreditas JSON
Version 1.0.0.1 PyPI version JSON
download
home_page
SummaryCreditas OpenAPI
upload_time2023-07-07 10:44:06
maintainer
docs_urlNone
author
requires_python
license
keywords swagger creditas openapi
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Creditas OpenAPI Client

## Start Here

### Disclaimer

This code has been autogenerated by [Swagger Codegen](https://github.com/swagger-api/swagger-codegen). I do only minimal changes, like adding this info, adding helper scripts for code generation, or fixing some bugs (if needed). I'm not affiliated with Banka Creditas.

### Versioning

The package version follows the API version. However, as the autogenerated code or the docs may require fixes, it is necessary to provide an extended versioning (like `1.0.0.1`), where the last number (`1`) represents an additional patch.

Also, surprisingly, **Creditas API versioning does not follow [Semantic Versioning](https://semver.org/)**. E.g. the API version `1.0.1` introduces breaking changes to `1.0.0`. Consider to define the the package version in your requirements like this: `creditas==1.0.0.*`. Then no breaking changes should sneak in, but additional fixes are still allowed.

### License

From [Swagger Codegen license info](https://github.com/swagger-api/swagger-codegen#license-information-on-generated-code):
> When code is generated from this project, it shall be considered AS IS and owned by the user of the software. There are no warranties--expressed or implied--for generated code. You can do what you wish with it, and once generated, the code is your responsibility and subject to the licensing terms that you deem appropriate.

Releasing this code under the MIT license.

## Description

This is specification of the Creditas OpenAPI. It contains definitions of Creditas banking services exposed via API accessible on the internet.

This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: 1.0.0
- Package version: 1.0.0.1
- Build package: io.swagger.codegen.languages.PythonClientCodegen
For more information, please visit [https://www.creditas.cz/otevrene-bankovnictvi](https://www.creditas.cz/otevrene-bankovnictvi)

## Requirements.

Python 2.7 and 3.4+

## Installation & Usage
### pip install


```sh
pip install creditas
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com//.git`)

Then import the package:
```python
import creditas 
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)

Then import the package:
```python
import creditas
```

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python
from __future__ import print_function
import time
import creditas
from creditas.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: oauth_code
configuration = creditas.Configuration()
configuration.access_token = 'YOUR_ACCESS_TOKEN'
# Configure OAuth2 access token for authorization: oauth_implicit
configuration = creditas.Configuration()
configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = creditas.AccountApi(creditas.ApiClient(configuration))
authorization_bearer = 'authorization_bearer_example' # str | Access token (optional)
body = creditas.Body5() # Body5 | Input data structure (optional)

try:
    # Get current account
    api_response = api_instance.d_ps_account_current_get_api(authorization_bearer=authorization_bearer, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AccountApi->d_ps_account_current_get_api: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *https://api.creditas.cz/oam/v1*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AccountApi* | [**d_ps_account_current_get_api**](docs/AccountApi.md#d_ps_account_current_get_api) | **POST** /account/current/get | Get current account
*AccountApi* | [**d_ps_account_list_api**](docs/AccountApi.md#d_ps_account_list_api) | **POST** /account/list | Get account list
*AccountApi* | [**d_ps_account_savings_get_api**](docs/AccountApi.md#d_ps_account_savings_get_api) | **POST** /account/savings/get | Get savings account
*AccountApi* | [**d_ps_account_term_deposit_get_api**](docs/AccountApi.md#d_ps_account_term_deposit_get_api) | **POST** /account/termdeposit/get | Get term deposit account
*AdministrationApi* | [**o_am_client_registration_create_api**](docs/AdministrationApi.md#o_am_client_registration_create_api) | **POST** /client/registration/create | Create client's application registration
*AispApi* | [**d_ps_aisp_account_balance_get_api**](docs/AispApi.md#d_ps_aisp_account_balance_get_api) | **POST** /aisp/account/balance/get | Get account balance
*AispApi* | [**d_ps_aisp_account_list_api**](docs/AispApi.md#d_ps_aisp_account_list_api) | **POST** /aisp/account/list | Get list of accounts
*AispApi* | [**d_ps_aisp_account_transaction_list_api**](docs/AispApi.md#d_ps_aisp_account_transaction_list_api) | **POST** /aisp/account/transaction/list | Get list of account transactions
*AuthorizationApi* | [**a_ut_authorization_status_get_api**](docs/AuthorizationApi.md#a_ut_authorization_status_get_api) | **POST** /authorization/status/get | Get authorization status
*AuthorizationApi* | [**a_ut_mpin_esign_device_list_api**](docs/AuthorizationApi.md#a_ut_mpin_esign_device_list_api) | **POST** /authorization/mpinesign/device/list | Get device list for MpinEsign
*AuthorizationApi* | [**a_ut_mpin_esign_initiate_api**](docs/AuthorizationApi.md#a_ut_mpin_esign_initiate_api) | **POST** /authorization/mpinesign/initiate | Initiate MpinEsign authorization
*AuthorizationApi* | [**a_ut_redirect_ib_initiate_api**](docs/AuthorizationApi.md#a_ut_redirect_ib_initiate_api) | **POST** /authorization/ib/initiate | Initiate IB authorization
*AuthorizationApi* | [**a_ut_sms_otp_initiate_api**](docs/AuthorizationApi.md#a_ut_sms_otp_initiate_api) | **POST** /authorization/smsotp/initiate | Initiate SMS authorization
*AuthorizationApi* | [**a_ut_sms_otp_perform_api**](docs/AuthorizationApi.md#a_ut_sms_otp_perform_api) | **POST** /authorization/smsotp/perform | Perform SMS authorization
*BalanceApi* | [**d_ps_account_balance_get_api**](docs/BalanceApi.md#d_ps_account_balance_get_api) | **POST** /account/balance/get | Get account balance
*CardApi* | [**c_rd_card_debit_get_api**](docs/CardApi.md#c_rd_card_debit_get_api) | **POST** /card/debit/get | Get debit card
*CardApi* | [**c_rd_card_list_api**](docs/CardApi.md#c_rd_card_list_api) | **POST** /card/list | Get card list
*CispApi* | [**d_ps_cisp_account_balance_check_api**](docs/CispApi.md#d_ps_cisp_account_balance_check_api) | **POST** /cisp/account/balance/check | Check balance for amount
*ExampleApi* | [**s_ys_error_basic_example_get_api**](docs/ExampleApi.md#s_ys_error_basic_example_get_api) | **POST** /example/error/basic | Example of basic error response
*ExampleApi* | [**s_ys_error_transaction_authorization_example_get_api**](docs/ExampleApi.md#s_ys_error_transaction_authorization_example_get_api) | **POST** /example/error/authorization | Example of authorization error response
*ExampleApi* | [**s_ys_error_validation_example_get_api**](docs/ExampleApi.md#s_ys_error_validation_example_get_api) | **POST** /example/error/validation | Example of validation error response
*LoanApi* | [**l_ns_loan_get_api**](docs/LoanApi.md#l_ns_loan_get_api) | **POST** /loan/get | Get loan
*LoanApi* | [**l_ns_loan_list_api**](docs/LoanApi.md#l_ns_loan_list_api) | **POST** /loan/list | Get loan list
*PaymentApi* | [**p_ay_payment_domestic_create_api**](docs/PaymentApi.md#p_ay_payment_domestic_create_api) | **POST** /payment/domestic/create | Create domestic payment order
*PaymentApi* | [**p_ay_payment_foreign_create_api**](docs/PaymentApi.md#p_ay_payment_foreign_create_api) | **POST** /payment/foreign/create | Create foreign payment order
*PaymentApi* | [**p_ay_payment_import_api**](docs/PaymentApi.md#p_ay_payment_import_api) | **POST** /payment/import | Import payment orders(s)
*PaymentApi* | [**p_ay_payment_import_status_get_api**](docs/PaymentApi.md#p_ay_payment_import_status_get_api) | **POST** /payment/import/status/get | Get payment import status
*PaymentApi* | [**p_ay_payment_search_api**](docs/PaymentApi.md#p_ay_payment_search_api) | **POST** /payment/search | Search payment orders
*PaymentApi* | [**p_ay_payment_sepa_create_api**](docs/PaymentApi.md#p_ay_payment_sepa_create_api) | **POST** /payment/sepa/create | Create SEPA payment order
*PaymentApi* | [**p_ay_payment_status_get_api**](docs/PaymentApi.md#p_ay_payment_status_get_api) | **POST** /payment/status/get | Get payment status
*PispApi* | [**d_ps_pisp_account_balance_check_api**](docs/PispApi.md#d_ps_pisp_account_balance_check_api) | **POST** /pisp/account/balance/check | Check balance for amount
*PispApi* | [**p_ay_pisp_payment_domestic_create_api**](docs/PispApi.md#p_ay_pisp_payment_domestic_create_api) | **POST** /pisp/payment/domestic/create | Create domestic payment order
*PispApi* | [**p_ay_pisp_payment_foreign_create_api**](docs/PispApi.md#p_ay_pisp_payment_foreign_create_api) | **POST** /pisp/payment/foreign/create | Create foreign payment order
*PispApi* | [**p_ay_pisp_payment_sepa_create_api**](docs/PispApi.md#p_ay_pisp_payment_sepa_create_api) | **POST** /pisp/payment/sepa/create | Create SEPA payment order
*PispApi* | [**p_ay_pisp_payment_status_get_api**](docs/PispApi.md#p_ay_pisp_payment_status_get_api) | **POST** /pisp/payment/status/get | Get payment status
*StatementApi* | [**s_ta_account_statement_get_api**](docs/StatementApi.md#s_ta_account_statement_get_api) | **POST** /account/statement/get | Download account statement
*StatementApi* | [**s_ta_account_statement_list_api**](docs/StatementApi.md#s_ta_account_statement_list_api) | **POST** /account/statement/list | Get list of available account satements
*TransactionApi* | [**d_ps_account_transaction_export_api**](docs/TransactionApi.md#d_ps_account_transaction_export_api) | **POST** /account/transaction/export | Export account transactions
*TransactionApi* | [**d_ps_account_transaction_search_api**](docs/TransactionApi.md#d_ps_account_transaction_search_api) | **POST** /account/transaction/search | Search account transactions


## Documentation For Models

 - [AccountCurrent](docs/AccountCurrent.md)
 - [AccountSavings](docs/AccountSavings.md)
 - [AccountStatement](docs/AccountStatement.md)
 - [AccountTermDeposit](docs/AccountTermDeposit.md)
 - [AccountTransaction](docs/AccountTransaction.md)
 - [AccountTransactionFilter](docs/AccountTransactionFilter.md)
 - [AccountTransactionFilterPartnerAccount](docs/AccountTransactionFilterPartnerAccount.md)
 - [AccountTransactionPartnerAccount](docs/AccountTransactionPartnerAccount.md)
 - [AispAccount](docs/AispAccount.md)
 - [AispAccountTransaction](docs/AispAccountTransaction.md)
 - [AispAccountTransactionPartnerAccount](docs/AispAccountTransactionPartnerAccount.md)
 - [Body](docs/Body.md)
 - [Body1](docs/Body1.md)
 - [Body10](docs/Body10.md)
 - [Body11](docs/Body11.md)
 - [Body12](docs/Body12.md)
 - [Body13](docs/Body13.md)
 - [Body14](docs/Body14.md)
 - [Body15](docs/Body15.md)
 - [Body16](docs/Body16.md)
 - [Body17](docs/Body17.md)
 - [Body18](docs/Body18.md)
 - [Body19](docs/Body19.md)
 - [Body2](docs/Body2.md)
 - [Body20](docs/Body20.md)
 - [Body21](docs/Body21.md)
 - [Body22](docs/Body22.md)
 - [Body23](docs/Body23.md)
 - [Body24](docs/Body24.md)
 - [Body25](docs/Body25.md)
 - [Body26](docs/Body26.md)
 - [Body27](docs/Body27.md)
 - [Body28](docs/Body28.md)
 - [Body3](docs/Body3.md)
 - [Body4](docs/Body4.md)
 - [Body5](docs/Body5.md)
 - [Body6](docs/Body6.md)
 - [Body7](docs/Body7.md)
 - [Body8](docs/Body8.md)
 - [Body9](docs/Body9.md)
 - [CispaccountbalancecheckCard](docs/CispaccountbalancecheckCard.md)
 - [ClientregistrationcreateClientApplication](docs/ClientregistrationcreateClientApplication.md)
 - [DebitCard](docs/DebitCard.md)
 - [ErrorBasic](docs/ErrorBasic.md)
 - [ErrorTransactionAuthorization](docs/ErrorTransactionAuthorization.md)
 - [ErrorTransactionAuthorizationData](docs/ErrorTransactionAuthorizationData.md)
 - [ErrorValidation](docs/ErrorValidation.md)
 - [ErrorValidationData](docs/ErrorValidationData.md)
 - [ErrorValidationDataParameter](docs/ErrorValidationDataParameter.md)
 - [ErrorValidationDataValidationResult](docs/ErrorValidationDataValidationResult.md)
 - [InlineResponse200](docs/InlineResponse200.md)
 - [InlineResponse2001](docs/InlineResponse2001.md)
 - [InlineResponse20010](docs/InlineResponse20010.md)
 - [InlineResponse20011](docs/InlineResponse20011.md)
 - [InlineResponse20012](docs/InlineResponse20012.md)
 - [InlineResponse20013](docs/InlineResponse20013.md)
 - [InlineResponse20014](docs/InlineResponse20014.md)
 - [InlineResponse20015](docs/InlineResponse20015.md)
 - [InlineResponse20016](docs/InlineResponse20016.md)
 - [InlineResponse20017](docs/InlineResponse20017.md)
 - [InlineResponse20018](docs/InlineResponse20018.md)
 - [InlineResponse20019](docs/InlineResponse20019.md)
 - [InlineResponse2001Devices](docs/InlineResponse2001Devices.md)
 - [InlineResponse2002](docs/InlineResponse2002.md)
 - [InlineResponse20020](docs/InlineResponse20020.md)
 - [InlineResponse20021](docs/InlineResponse20021.md)
 - [InlineResponse20022](docs/InlineResponse20022.md)
 - [InlineResponse20023](docs/InlineResponse20023.md)
 - [InlineResponse20024](docs/InlineResponse20024.md)
 - [InlineResponse20025](docs/InlineResponse20025.md)
 - [InlineResponse20026](docs/InlineResponse20026.md)
 - [InlineResponse20027](docs/InlineResponse20027.md)
 - [InlineResponse20028](docs/InlineResponse20028.md)
 - [InlineResponse20029](docs/InlineResponse20029.md)
 - [InlineResponse2003](docs/InlineResponse2003.md)
 - [InlineResponse20030](docs/InlineResponse20030.md)
 - [InlineResponse20031](docs/InlineResponse20031.md)
 - [InlineResponse2004](docs/InlineResponse2004.md)
 - [InlineResponse2005](docs/InlineResponse2005.md)
 - [InlineResponse2006](docs/InlineResponse2006.md)
 - [InlineResponse2007](docs/InlineResponse2007.md)
 - [InlineResponse2008](docs/InlineResponse2008.md)
 - [InlineResponse2009](docs/InlineResponse2009.md)
 - [InlineResponse500](docs/InlineResponse500.md)
 - [InlineResponse5001](docs/InlineResponse5001.md)
 - [InlineResponse5002](docs/InlineResponse5002.md)
 - [Loan](docs/Loan.md)
 - [Money](docs/Money.md)
 - [PaymentOrderCommon](docs/PaymentOrderCommon.md)
 - [PaymentOrderCommonPartnerAccount](docs/PaymentOrderCommonPartnerAccount.md)
 - [PaymentOrderDomestic](docs/PaymentOrderDomestic.md)
 - [PaymentOrderDomesticPartnerAccount](docs/PaymentOrderDomesticPartnerAccount.md)
 - [PaymentOrderFilter](docs/PaymentOrderFilter.md)
 - [PaymentOrderFilterPartnerAccount](docs/PaymentOrderFilterPartnerAccount.md)
 - [PaymentOrderForeign](docs/PaymentOrderForeign.md)
 - [PaymentOrderForeignPartnerAccount](docs/PaymentOrderForeignPartnerAccount.md)
 - [PaymentOrderSepa](docs/PaymentOrderSepa.md)
 - [PaymentOrderSepaPartnerAccount](docs/PaymentOrderSepaPartnerAccount.md)
 - [PaymentdomesticcreatePartnerAccount](docs/PaymentdomesticcreatePartnerAccount.md)
 - [PaymentdomesticcreateSourceAccount](docs/PaymentdomesticcreateSourceAccount.md)
 - [PaymentforeigncreatePartnerAccount](docs/PaymentforeigncreatePartnerAccount.md)
 - [PaymentsepacreatePartnerAccount](docs/PaymentsepacreatePartnerAccount.md)
 - [PaymentsepacreateSourceAccount](docs/PaymentsepacreateSourceAccount.md)
 - [PisppaymentdomesticcreateSourceAccount](docs/PisppaymentdomesticcreateSourceAccount.md)
 - [PisppaymentsepacreatePartnerAccount](docs/PisppaymentsepacreatePartnerAccount.md)
 - [SourceAccount](docs/SourceAccount.md)


## Documentation For Authorization


## oauth_code

- **Type**: OAuth
- **Flow**: accessCode
- **Authorization URL**: https://www.creditas.cz/api/oam/authorize
- **Scopes**: 
 - **product_info**: Access product information
 - **balance_info**: Access account balance information
 - **transaction_info**: Access transaction history
 - **payment**: Access payment functionality

## oauth_implicit

- **Type**: OAuth
- **Flow**: implicit
- **Authorization URL**: https://www.creditas.cz/api/oam/authorize
- **Scopes**: 
 - **product_info**: Access product information
 - **balance_info**: Access account balance information
 - **transaction_info**: Access transaction history
 - **payment**: Access payment functionality


## Author

is@creditas.cz


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "creditas",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Swagger,Creditas OpenAPI",
    "author": "",
    "author_email": "is@creditas.cz",
    "download_url": "https://files.pythonhosted.org/packages/6c/dc/0c5d92a202ff3ea8987c718f709d28919bf56326585609e786e47a2ad370/creditas-1.0.0.1.tar.gz",
    "platform": null,
    "description": "# Creditas OpenAPI Client\n\n## Start Here\n\n### Disclaimer\n\nThis code has been autogenerated by [Swagger Codegen](https://github.com/swagger-api/swagger-codegen). I do only minimal changes, like adding this info, adding helper scripts for code generation, or fixing some bugs (if needed). I'm not affiliated with Banka Creditas.\n\n### Versioning\n\nThe package version follows the API version. However, as the autogenerated code or the docs may require fixes, it is necessary to provide an extended versioning (like `1.0.0.1`), where the last number (`1`) represents an additional patch.\n\nAlso, surprisingly, **Creditas API versioning does not follow [Semantic Versioning](https://semver.org/)**. E.g. the API version `1.0.1` introduces breaking changes to `1.0.0`. Consider to define the the package version in your requirements like this: `creditas==1.0.0.*`. Then no breaking changes should sneak in, but additional fixes are still allowed.\n\n### License\n\nFrom [Swagger Codegen license info](https://github.com/swagger-api/swagger-codegen#license-information-on-generated-code):\n> When code is generated from this project, it shall be considered AS IS and owned by the user of the software. There are no warranties--expressed or implied--for generated code. You can do what you wish with it, and once generated, the code is your responsibility and subject to the licensing terms that you deem appropriate.\n\nReleasing this code under the MIT license.\n\n## Description\n\nThis is specification of the Creditas OpenAPI. It contains definitions of Creditas banking services exposed via API accessible on the internet.\n\nThis Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:\n\n- API version: 1.0.0\n- Package version: 1.0.0.1\n- Build package: io.swagger.codegen.languages.PythonClientCodegen\nFor more information, please visit [https://www.creditas.cz/otevrene-bankovnictvi](https://www.creditas.cz/otevrene-bankovnictvi)\n\n## Requirements.\n\nPython 2.7 and 3.4+\n\n## Installation & Usage\n### pip install\n\n\n```sh\npip install creditas\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com//.git`)\n\nThen import the package:\n```python\nimport creditas \n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport creditas\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\nfrom __future__ import print_function\nimport time\nimport creditas\nfrom creditas.rest import ApiException\nfrom pprint import pprint\n\n# Configure OAuth2 access token for authorization: oauth_code\nconfiguration = creditas.Configuration()\nconfiguration.access_token = 'YOUR_ACCESS_TOKEN'\n# Configure OAuth2 access token for authorization: oauth_implicit\nconfiguration = creditas.Configuration()\nconfiguration.access_token = 'YOUR_ACCESS_TOKEN'\n\n# create an instance of the API class\napi_instance = creditas.AccountApi(creditas.ApiClient(configuration))\nauthorization_bearer = 'authorization_bearer_example' # str | Access token (optional)\nbody = creditas.Body5() # Body5 | Input data structure (optional)\n\ntry:\n    # Get current account\n    api_response = api_instance.d_ps_account_current_get_api(authorization_bearer=authorization_bearer, body=body)\n    pprint(api_response)\nexcept ApiException as e:\n    print(\"Exception when calling AccountApi->d_ps_account_current_get_api: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.creditas.cz/oam/v1*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*AccountApi* | [**d_ps_account_current_get_api**](docs/AccountApi.md#d_ps_account_current_get_api) | **POST** /account/current/get | Get current account\n*AccountApi* | [**d_ps_account_list_api**](docs/AccountApi.md#d_ps_account_list_api) | **POST** /account/list | Get account list\n*AccountApi* | [**d_ps_account_savings_get_api**](docs/AccountApi.md#d_ps_account_savings_get_api) | **POST** /account/savings/get | Get savings account\n*AccountApi* | [**d_ps_account_term_deposit_get_api**](docs/AccountApi.md#d_ps_account_term_deposit_get_api) | **POST** /account/termdeposit/get | Get term deposit account\n*AdministrationApi* | [**o_am_client_registration_create_api**](docs/AdministrationApi.md#o_am_client_registration_create_api) | **POST** /client/registration/create | Create client's application registration\n*AispApi* | [**d_ps_aisp_account_balance_get_api**](docs/AispApi.md#d_ps_aisp_account_balance_get_api) | **POST** /aisp/account/balance/get | Get account balance\n*AispApi* | [**d_ps_aisp_account_list_api**](docs/AispApi.md#d_ps_aisp_account_list_api) | **POST** /aisp/account/list | Get list of accounts\n*AispApi* | [**d_ps_aisp_account_transaction_list_api**](docs/AispApi.md#d_ps_aisp_account_transaction_list_api) | **POST** /aisp/account/transaction/list | Get list of account transactions\n*AuthorizationApi* | [**a_ut_authorization_status_get_api**](docs/AuthorizationApi.md#a_ut_authorization_status_get_api) | **POST** /authorization/status/get | Get authorization status\n*AuthorizationApi* | [**a_ut_mpin_esign_device_list_api**](docs/AuthorizationApi.md#a_ut_mpin_esign_device_list_api) | **POST** /authorization/mpinesign/device/list | Get device list for MpinEsign\n*AuthorizationApi* | [**a_ut_mpin_esign_initiate_api**](docs/AuthorizationApi.md#a_ut_mpin_esign_initiate_api) | **POST** /authorization/mpinesign/initiate | Initiate MpinEsign authorization\n*AuthorizationApi* | [**a_ut_redirect_ib_initiate_api**](docs/AuthorizationApi.md#a_ut_redirect_ib_initiate_api) | **POST** /authorization/ib/initiate | Initiate IB authorization\n*AuthorizationApi* | [**a_ut_sms_otp_initiate_api**](docs/AuthorizationApi.md#a_ut_sms_otp_initiate_api) | **POST** /authorization/smsotp/initiate | Initiate SMS authorization\n*AuthorizationApi* | [**a_ut_sms_otp_perform_api**](docs/AuthorizationApi.md#a_ut_sms_otp_perform_api) | **POST** /authorization/smsotp/perform | Perform SMS authorization\n*BalanceApi* | [**d_ps_account_balance_get_api**](docs/BalanceApi.md#d_ps_account_balance_get_api) | **POST** /account/balance/get | Get account balance\n*CardApi* | [**c_rd_card_debit_get_api**](docs/CardApi.md#c_rd_card_debit_get_api) | **POST** /card/debit/get | Get debit card\n*CardApi* | [**c_rd_card_list_api**](docs/CardApi.md#c_rd_card_list_api) | **POST** /card/list | Get card list\n*CispApi* | [**d_ps_cisp_account_balance_check_api**](docs/CispApi.md#d_ps_cisp_account_balance_check_api) | **POST** /cisp/account/balance/check | Check balance for amount\n*ExampleApi* | [**s_ys_error_basic_example_get_api**](docs/ExampleApi.md#s_ys_error_basic_example_get_api) | **POST** /example/error/basic | Example of basic error response\n*ExampleApi* | [**s_ys_error_transaction_authorization_example_get_api**](docs/ExampleApi.md#s_ys_error_transaction_authorization_example_get_api) | **POST** /example/error/authorization | Example of authorization error response\n*ExampleApi* | [**s_ys_error_validation_example_get_api**](docs/ExampleApi.md#s_ys_error_validation_example_get_api) | **POST** /example/error/validation | Example of validation error response\n*LoanApi* | [**l_ns_loan_get_api**](docs/LoanApi.md#l_ns_loan_get_api) | **POST** /loan/get | Get loan\n*LoanApi* | [**l_ns_loan_list_api**](docs/LoanApi.md#l_ns_loan_list_api) | **POST** /loan/list | Get loan list\n*PaymentApi* | [**p_ay_payment_domestic_create_api**](docs/PaymentApi.md#p_ay_payment_domestic_create_api) | **POST** /payment/domestic/create | Create domestic payment order\n*PaymentApi* | [**p_ay_payment_foreign_create_api**](docs/PaymentApi.md#p_ay_payment_foreign_create_api) | **POST** /payment/foreign/create | Create foreign payment order\n*PaymentApi* | [**p_ay_payment_import_api**](docs/PaymentApi.md#p_ay_payment_import_api) | **POST** /payment/import | Import payment orders(s)\n*PaymentApi* | [**p_ay_payment_import_status_get_api**](docs/PaymentApi.md#p_ay_payment_import_status_get_api) | **POST** /payment/import/status/get | Get payment import status\n*PaymentApi* | [**p_ay_payment_search_api**](docs/PaymentApi.md#p_ay_payment_search_api) | **POST** /payment/search | Search payment orders\n*PaymentApi* | [**p_ay_payment_sepa_create_api**](docs/PaymentApi.md#p_ay_payment_sepa_create_api) | **POST** /payment/sepa/create | Create SEPA payment order\n*PaymentApi* | [**p_ay_payment_status_get_api**](docs/PaymentApi.md#p_ay_payment_status_get_api) | **POST** /payment/status/get | Get payment status\n*PispApi* | [**d_ps_pisp_account_balance_check_api**](docs/PispApi.md#d_ps_pisp_account_balance_check_api) | **POST** /pisp/account/balance/check | Check balance for amount\n*PispApi* | [**p_ay_pisp_payment_domestic_create_api**](docs/PispApi.md#p_ay_pisp_payment_domestic_create_api) | **POST** /pisp/payment/domestic/create | Create domestic payment order\n*PispApi* | [**p_ay_pisp_payment_foreign_create_api**](docs/PispApi.md#p_ay_pisp_payment_foreign_create_api) | **POST** /pisp/payment/foreign/create | Create foreign payment order\n*PispApi* | [**p_ay_pisp_payment_sepa_create_api**](docs/PispApi.md#p_ay_pisp_payment_sepa_create_api) | **POST** /pisp/payment/sepa/create | Create SEPA payment order\n*PispApi* | [**p_ay_pisp_payment_status_get_api**](docs/PispApi.md#p_ay_pisp_payment_status_get_api) | **POST** /pisp/payment/status/get | Get payment status\n*StatementApi* | [**s_ta_account_statement_get_api**](docs/StatementApi.md#s_ta_account_statement_get_api) | **POST** /account/statement/get | Download account statement\n*StatementApi* | [**s_ta_account_statement_list_api**](docs/StatementApi.md#s_ta_account_statement_list_api) | **POST** /account/statement/list | Get list of available account satements\n*TransactionApi* | [**d_ps_account_transaction_export_api**](docs/TransactionApi.md#d_ps_account_transaction_export_api) | **POST** /account/transaction/export | Export account transactions\n*TransactionApi* | [**d_ps_account_transaction_search_api**](docs/TransactionApi.md#d_ps_account_transaction_search_api) | **POST** /account/transaction/search | Search account transactions\n\n\n## Documentation For Models\n\n - [AccountCurrent](docs/AccountCurrent.md)\n - [AccountSavings](docs/AccountSavings.md)\n - [AccountStatement](docs/AccountStatement.md)\n - [AccountTermDeposit](docs/AccountTermDeposit.md)\n - [AccountTransaction](docs/AccountTransaction.md)\n - [AccountTransactionFilter](docs/AccountTransactionFilter.md)\n - [AccountTransactionFilterPartnerAccount](docs/AccountTransactionFilterPartnerAccount.md)\n - [AccountTransactionPartnerAccount](docs/AccountTransactionPartnerAccount.md)\n - [AispAccount](docs/AispAccount.md)\n - [AispAccountTransaction](docs/AispAccountTransaction.md)\n - [AispAccountTransactionPartnerAccount](docs/AispAccountTransactionPartnerAccount.md)\n - [Body](docs/Body.md)\n - [Body1](docs/Body1.md)\n - [Body10](docs/Body10.md)\n - [Body11](docs/Body11.md)\n - [Body12](docs/Body12.md)\n - [Body13](docs/Body13.md)\n - [Body14](docs/Body14.md)\n - [Body15](docs/Body15.md)\n - [Body16](docs/Body16.md)\n - [Body17](docs/Body17.md)\n - [Body18](docs/Body18.md)\n - [Body19](docs/Body19.md)\n - [Body2](docs/Body2.md)\n - [Body20](docs/Body20.md)\n - [Body21](docs/Body21.md)\n - [Body22](docs/Body22.md)\n - [Body23](docs/Body23.md)\n - [Body24](docs/Body24.md)\n - [Body25](docs/Body25.md)\n - [Body26](docs/Body26.md)\n - [Body27](docs/Body27.md)\n - [Body28](docs/Body28.md)\n - [Body3](docs/Body3.md)\n - [Body4](docs/Body4.md)\n - [Body5](docs/Body5.md)\n - [Body6](docs/Body6.md)\n - [Body7](docs/Body7.md)\n - [Body8](docs/Body8.md)\n - [Body9](docs/Body9.md)\n - [CispaccountbalancecheckCard](docs/CispaccountbalancecheckCard.md)\n - [ClientregistrationcreateClientApplication](docs/ClientregistrationcreateClientApplication.md)\n - [DebitCard](docs/DebitCard.md)\n - [ErrorBasic](docs/ErrorBasic.md)\n - [ErrorTransactionAuthorization](docs/ErrorTransactionAuthorization.md)\n - [ErrorTransactionAuthorizationData](docs/ErrorTransactionAuthorizationData.md)\n - [ErrorValidation](docs/ErrorValidation.md)\n - [ErrorValidationData](docs/ErrorValidationData.md)\n - [ErrorValidationDataParameter](docs/ErrorValidationDataParameter.md)\n - [ErrorValidationDataValidationResult](docs/ErrorValidationDataValidationResult.md)\n - [InlineResponse200](docs/InlineResponse200.md)\n - [InlineResponse2001](docs/InlineResponse2001.md)\n - [InlineResponse20010](docs/InlineResponse20010.md)\n - [InlineResponse20011](docs/InlineResponse20011.md)\n - [InlineResponse20012](docs/InlineResponse20012.md)\n - [InlineResponse20013](docs/InlineResponse20013.md)\n - [InlineResponse20014](docs/InlineResponse20014.md)\n - [InlineResponse20015](docs/InlineResponse20015.md)\n - [InlineResponse20016](docs/InlineResponse20016.md)\n - [InlineResponse20017](docs/InlineResponse20017.md)\n - [InlineResponse20018](docs/InlineResponse20018.md)\n - [InlineResponse20019](docs/InlineResponse20019.md)\n - [InlineResponse2001Devices](docs/InlineResponse2001Devices.md)\n - [InlineResponse2002](docs/InlineResponse2002.md)\n - [InlineResponse20020](docs/InlineResponse20020.md)\n - [InlineResponse20021](docs/InlineResponse20021.md)\n - [InlineResponse20022](docs/InlineResponse20022.md)\n - [InlineResponse20023](docs/InlineResponse20023.md)\n - [InlineResponse20024](docs/InlineResponse20024.md)\n - [InlineResponse20025](docs/InlineResponse20025.md)\n - [InlineResponse20026](docs/InlineResponse20026.md)\n - [InlineResponse20027](docs/InlineResponse20027.md)\n - [InlineResponse20028](docs/InlineResponse20028.md)\n - [InlineResponse20029](docs/InlineResponse20029.md)\n - [InlineResponse2003](docs/InlineResponse2003.md)\n - [InlineResponse20030](docs/InlineResponse20030.md)\n - [InlineResponse20031](docs/InlineResponse20031.md)\n - [InlineResponse2004](docs/InlineResponse2004.md)\n - [InlineResponse2005](docs/InlineResponse2005.md)\n - [InlineResponse2006](docs/InlineResponse2006.md)\n - [InlineResponse2007](docs/InlineResponse2007.md)\n - [InlineResponse2008](docs/InlineResponse2008.md)\n - [InlineResponse2009](docs/InlineResponse2009.md)\n - [InlineResponse500](docs/InlineResponse500.md)\n - [InlineResponse5001](docs/InlineResponse5001.md)\n - [InlineResponse5002](docs/InlineResponse5002.md)\n - [Loan](docs/Loan.md)\n - [Money](docs/Money.md)\n - [PaymentOrderCommon](docs/PaymentOrderCommon.md)\n - [PaymentOrderCommonPartnerAccount](docs/PaymentOrderCommonPartnerAccount.md)\n - [PaymentOrderDomestic](docs/PaymentOrderDomestic.md)\n - [PaymentOrderDomesticPartnerAccount](docs/PaymentOrderDomesticPartnerAccount.md)\n - [PaymentOrderFilter](docs/PaymentOrderFilter.md)\n - [PaymentOrderFilterPartnerAccount](docs/PaymentOrderFilterPartnerAccount.md)\n - [PaymentOrderForeign](docs/PaymentOrderForeign.md)\n - [PaymentOrderForeignPartnerAccount](docs/PaymentOrderForeignPartnerAccount.md)\n - [PaymentOrderSepa](docs/PaymentOrderSepa.md)\n - [PaymentOrderSepaPartnerAccount](docs/PaymentOrderSepaPartnerAccount.md)\n - [PaymentdomesticcreatePartnerAccount](docs/PaymentdomesticcreatePartnerAccount.md)\n - [PaymentdomesticcreateSourceAccount](docs/PaymentdomesticcreateSourceAccount.md)\n - [PaymentforeigncreatePartnerAccount](docs/PaymentforeigncreatePartnerAccount.md)\n - [PaymentsepacreatePartnerAccount](docs/PaymentsepacreatePartnerAccount.md)\n - [PaymentsepacreateSourceAccount](docs/PaymentsepacreateSourceAccount.md)\n - [PisppaymentdomesticcreateSourceAccount](docs/PisppaymentdomesticcreateSourceAccount.md)\n - [PisppaymentsepacreatePartnerAccount](docs/PisppaymentsepacreatePartnerAccount.md)\n - [SourceAccount](docs/SourceAccount.md)\n\n\n## Documentation For Authorization\n\n\n## oauth_code\n\n- **Type**: OAuth\n- **Flow**: accessCode\n- **Authorization URL**: https://www.creditas.cz/api/oam/authorize\n- **Scopes**: \n - **product_info**: Access product information\n - **balance_info**: Access account balance information\n - **transaction_info**: Access transaction history\n - **payment**: Access payment functionality\n\n## oauth_implicit\n\n- **Type**: OAuth\n- **Flow**: implicit\n- **Authorization URL**: https://www.creditas.cz/api/oam/authorize\n- **Scopes**: \n - **product_info**: Access product information\n - **balance_info**: Access account balance information\n - **transaction_info**: Access transaction history\n - **payment**: Access payment functionality\n\n\n## Author\n\nis@creditas.cz\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Creditas OpenAPI",
    "version": "1.0.0.1",
    "project_urls": null,
    "split_keywords": [
        "swagger",
        "creditas openapi"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd8ff6194867bd8b638befe9af8efa831a497caa85b7b688955784de2a613a75",
                "md5": "770c8703a452dfe504df2c9eef5167da",
                "sha256": "75e00cfabb4e9ecebbfc77023f47241592e93e11cabba8b8406c7975823f5eb5"
            },
            "downloads": -1,
            "filename": "creditas-1.0.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "770c8703a452dfe504df2c9eef5167da",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 301638,
            "upload_time": "2023-07-07T10:44:04",
            "upload_time_iso_8601": "2023-07-07T10:44:04.447676Z",
            "url": "https://files.pythonhosted.org/packages/cd/8f/f6194867bd8b638befe9af8efa831a497caa85b7b688955784de2a613a75/creditas-1.0.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cdc0c5d92a202ff3ea8987c718f709d28919bf56326585609e786e47a2ad370",
                "md5": "5f62fc0d03635eeb7d0b1f6bd65ff442",
                "sha256": "4bcb0b3f2a4be78b1c468c53dda18f41ac2d05263ecf2a6044d73c8b514e4bd4"
            },
            "downloads": -1,
            "filename": "creditas-1.0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "5f62fc0d03635eeb7d0b1f6bd65ff442",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 82889,
            "upload_time": "2023-07-07T10:44:06",
            "upload_time_iso_8601": "2023-07-07T10:44:06.074698Z",
            "url": "https://files.pythonhosted.org/packages/6c/dc/0c5d92a202ff3ea8987c718f709d28919bf56326585609e786e47a2ad370/creditas-1.0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-07 10:44:06",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "creditas"
}
        
Elapsed time: 0.08953s