# pluggy-sdk
Pluggy's main API to review data and execute connectors
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 1.0.0
- Package version: 1.0.0.post36
- Generator version: 7.12.0-SNAPSHOT
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
For more information, please visit [https://pluggy.ai](https://pluggy.ai)
## Requirements.
Python 3.8+
## Installation & Usage
### pip install
If the python package is hosted on a repository, you can install directly using:
```sh
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
Then import the package:
```python
import pluggy_sdk
```
### 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 pluggy_sdk
```
### Tests
Execute `pytest` to run the tests.
## Getting Started
Please follow the [installation procedure](#installation--usage) and then run the following:
```python
import pluggy_sdk
from pluggy_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.pluggy.ai
# See configuration.py for a list of all supported configuration parameters.
configuration = pluggy_sdk.Configuration(
host = "https://api.pluggy.ai"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: default
configuration.api_key['default'] = os.environ["API_KEY"]
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['default'] = 'Bearer'
# Enter a context with an instance of the API client
with pluggy_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = pluggy_sdk.AccountApi(api_client)
item_id = 'd0f8a8c0-e8e3-11e9-b210-d663bd873d93' # str | Item primary identifier
type = 'BANK' # str | Parameter to filter between bank accounts and credit accounts (optional)
try:
# List
api_response = api_instance.accounts_list(item_id, type=type)
print("The response of AccountApi->accounts_list:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling AccountApi->accounts_list: %s\n" % e)
```
## Documentation for API Endpoints
All URIs are relative to *https://api.pluggy.ai*
Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AccountApi* | [**accounts_list**](docs/AccountApi.md#accounts_list) | **GET** /accounts | List
*AccountApi* | [**accounts_retrieve**](docs/AccountApi.md#accounts_retrieve) | **GET** /accounts/{id} | Retrieve
*AuthApi* | [**auth_create**](docs/AuthApi.md#auth_create) | **POST** /auth | Create API Key
*AuthApi* | [**connect_token_create**](docs/AuthApi.md#connect_token_create) | **POST** /connect_token | Create Connect Token
*BenefitApi* | [**benefit_retrieve_by_id**](docs/BenefitApi.md#benefit_retrieve_by_id) | **GET** /benefits/{id} | Retrieve
*BenefitApi* | [**benefits_list**](docs/BenefitApi.md#benefits_list) | **GET** /benefits | List
*BillApi* | [**bills_list**](docs/BillApi.md#bills_list) | **GET** /bills | List
*BillApi* | [**bills_retrieve**](docs/BillApi.md#bills_retrieve) | **GET** /bills/{id} | Retrieve
*BulkPaymentApi* | [**bulk_payment_create**](docs/BulkPaymentApi.md#bulk_payment_create) | **POST** /payments/bulk | Create
*BulkPaymentApi* | [**bulk_payment_delete**](docs/BulkPaymentApi.md#bulk_payment_delete) | **DELETE** /payments/bulk/{id} | Delete
*BulkPaymentApi* | [**bulk_payment_retrieve**](docs/BulkPaymentApi.md#bulk_payment_retrieve) | **GET** /payments/bulk/{id} | Retrieve
*BulkPaymentApi* | [**bulk_payments_list**](docs/BulkPaymentApi.md#bulk_payments_list) | **GET** /payments/bulk | List
*CategoryApi* | [**categories_list**](docs/CategoryApi.md#categories_list) | **GET** /categories | List
*CategoryApi* | [**categories_retrieve**](docs/CategoryApi.md#categories_retrieve) | **GET** /categories/{id} | Retrieve
*CategoryApi* | [**client_category_rules_create**](docs/CategoryApi.md#client_category_rules_create) | **POST** /categories/rules | Create Category Rule
*CategoryApi* | [**client_category_rules_list**](docs/CategoryApi.md#client_category_rules_list) | **GET** /categories/rules | List Category Rules
*ConnectorApi* | [**connector_retrieve**](docs/ConnectorApi.md#connector_retrieve) | **GET** /connectors/{id} | Retrieve
*ConnectorApi* | [**connectors_list**](docs/ConnectorApi.md#connectors_list) | **GET** /connectors | List
*ConnectorApi* | [**connectors_validate**](docs/ConnectorApi.md#connectors_validate) | **POST** /connectors/{id}/validate | Validate
*ConsentApi* | [**consent_retrieve**](docs/ConsentApi.md#consent_retrieve) | **GET** /consents/{id} | Retrieve
*ConsentApi* | [**consents_list**](docs/ConsentApi.md#consents_list) | **GET** /consents | List
*IdentityApi* | [**identity_find_by_item**](docs/IdentityApi.md#identity_find_by_item) | **GET** /identity | Find by item
*IdentityApi* | [**identity_retrieve**](docs/IdentityApi.md#identity_retrieve) | **GET** /identity/{id} | Retrieve
*InvestmentApi* | [**investment_transactions_list**](docs/InvestmentApi.md#investment_transactions_list) | **GET** /investments/{id}/transactions | List investment transactions
*InvestmentApi* | [**investments_list**](docs/InvestmentApi.md#investments_list) | **GET** /investments | List
*InvestmentApi* | [**investments_retrieve**](docs/InvestmentApi.md#investments_retrieve) | **GET** /investments/{id} | Retrieve
*ItemsApi* | [**items_create**](docs/ItemsApi.md#items_create) | **POST** /items | Create
*ItemsApi* | [**items_delete**](docs/ItemsApi.md#items_delete) | **DELETE** /items/{id} | Delete
*ItemsApi* | [**items_retrieve**](docs/ItemsApi.md#items_retrieve) | **GET** /items/{id} | Retrieve
*ItemsApi* | [**items_send_mfa**](docs/ItemsApi.md#items_send_mfa) | **POST** /items/{id}/mfa | Send MFA
*ItemsApi* | [**items_update**](docs/ItemsApi.md#items_update) | **PATCH** /items/{id} | Update
*LoanApi* | [**loans_list**](docs/LoanApi.md#loans_list) | **GET** /loans | List
*LoanApi* | [**loans_retrieve**](docs/LoanApi.md#loans_retrieve) | **GET** /loans/{id} | Retrieve
*PaymentCustomerApi* | [**payment_customer_create**](docs/PaymentCustomerApi.md#payment_customer_create) | **POST** /payments/customers | Create
*PaymentCustomerApi* | [**payment_customer_delete**](docs/PaymentCustomerApi.md#payment_customer_delete) | **DELETE** /payments/customers/{id} | Delete
*PaymentCustomerApi* | [**payment_customer_retrieve**](docs/PaymentCustomerApi.md#payment_customer_retrieve) | **GET** /payments/customers/{id} | Retrieve
*PaymentCustomerApi* | [**payment_customer_update**](docs/PaymentCustomerApi.md#payment_customer_update) | **PATCH** /payments/customers/{id} | Update
*PaymentCustomerApi* | [**payment_customers_list**](docs/PaymentCustomerApi.md#payment_customers_list) | **GET** /payments/customers | List
*PaymentIntentApi* | [**payment_intent_create**](docs/PaymentIntentApi.md#payment_intent_create) | **POST** /payments/intents | Create
*PaymentIntentApi* | [**payment_intent_retrieve**](docs/PaymentIntentApi.md#payment_intent_retrieve) | **GET** /payments/intents/{id} | Retrieve
*PaymentIntentApi* | [**payment_intents_list**](docs/PaymentIntentApi.md#payment_intents_list) | **GET** /payments/intents | List
*PaymentRecipientApi* | [**payment_recipient_create**](docs/PaymentRecipientApi.md#payment_recipient_create) | **POST** /payments/recipients | Create
*PaymentRecipientApi* | [**payment_recipient_delete**](docs/PaymentRecipientApi.md#payment_recipient_delete) | **DELETE** /payments/recipients/{id} | Delete
*PaymentRecipientApi* | [**payment_recipient_institutions_retrieve**](docs/PaymentRecipientApi.md#payment_recipient_institutions_retrieve) | **GET** /payments/recipients/institutions/{id} | Retrieve Institution
*PaymentRecipientApi* | [**payment_recipient_retrieve**](docs/PaymentRecipientApi.md#payment_recipient_retrieve) | **GET** /payments/recipients/{id} | Retrieve
*PaymentRecipientApi* | [**payment_recipient_update**](docs/PaymentRecipientApi.md#payment_recipient_update) | **PATCH** /payments/recipients/{id} | Update
*PaymentRecipientApi* | [**payment_recipients_institution_list**](docs/PaymentRecipientApi.md#payment_recipients_institution_list) | **GET** /payments/recipients/institutions | List Institutions
*PaymentRecipientApi* | [**payment_recipients_list**](docs/PaymentRecipientApi.md#payment_recipients_list) | **GET** /payments/recipients | List
*PaymentRequestApi* | [**payment_request_create**](docs/PaymentRequestApi.md#payment_request_create) | **POST** /payments/requests | Create
*PaymentRequestApi* | [**payment_request_create_boleto**](docs/PaymentRequestApi.md#payment_request_create_boleto) | **POST** /payments/requests/boleto | Create boleto payment request
*PaymentRequestApi* | [**payment_request_create_pix_qr**](docs/PaymentRequestApi.md#payment_request_create_pix_qr) | **POST** /payments/requests/pix-qr | Create PIX QR payment request
*PaymentRequestApi* | [**payment_request_delete**](docs/PaymentRequestApi.md#payment_request_delete) | **DELETE** /payments/requests/{id} | Delete
*PaymentRequestApi* | [**payment_request_receipt_create**](docs/PaymentRequestApi.md#payment_request_receipt_create) | **POST** /payments/requests/{id}/receipts | Create Payment Receipt
*PaymentRequestApi* | [**payment_request_receipt_list**](docs/PaymentRequestApi.md#payment_request_receipt_list) | **GET** /payments/requests/{id}/receipts | List Payment Receipts
*PaymentRequestApi* | [**payment_request_receipt_retrieve**](docs/PaymentRequestApi.md#payment_request_receipt_retrieve) | **GET** /payments/requests/{payment-request-id}/receipts/{payment-receipt-id} | Retrieve Payment Receipt
*PaymentRequestApi* | [**payment_request_refund**](docs/PaymentRequestApi.md#payment_request_refund) | **POST** /payments/requests/{id}/refund | Refund Payment Request
*PaymentRequestApi* | [**payment_request_retrieve**](docs/PaymentRequestApi.md#payment_request_retrieve) | **GET** /payments/requests/{id} | Retrieve
*PaymentRequestApi* | [**payment_request_update**](docs/PaymentRequestApi.md#payment_request_update) | **PATCH** /payments/requests/{id} | Update
*PaymentRequestApi* | [**payment_requests_list**](docs/PaymentRequestApi.md#payment_requests_list) | **GET** /payments/requests | List
*PaymentScheduleApi* | [**payment_schedules_cancel**](docs/PaymentScheduleApi.md#payment_schedules_cancel) | **POST** /payments/requests/{id}/schedules/cancel | Cancel Payment Schedule Authorization
*PaymentScheduleApi* | [**payment_schedules_cancel_specific**](docs/PaymentScheduleApi.md#payment_schedules_cancel_specific) | **POST** /payments/requests/{id}/schedules/{scheduleId}/cancel | Cancel Payment Schedule Authorization
*PaymentScheduleApi* | [**payment_schedules_list**](docs/PaymentScheduleApi.md#payment_schedules_list) | **GET** /payments/requests/{id}/schedules | List Schedules
*SmartAccountApi* | [**smart_account_balance_retrieve**](docs/SmartAccountApi.md#smart_account_balance_retrieve) | **GET** /payments/smart-accounts/{id}/balance | Retrieve Balance
*SmartAccountApi* | [**smart_account_create**](docs/SmartAccountApi.md#smart_account_create) | **POST** /payments/smart-accounts | Create
*SmartAccountApi* | [**smart_account_retrieve**](docs/SmartAccountApi.md#smart_account_retrieve) | **GET** /payments/smart-accounts/{id} | Retrieve
*SmartAccountApi* | [**smart_account_transfer**](docs/SmartAccountApi.md#smart_account_transfer) | **GET** /payments/smart-accounts/{id}/transfers/{transfer_id} | Retrieve Transfer
*SmartAccountApi* | [**smart_account_transfer_create**](docs/SmartAccountApi.md#smart_account_transfer_create) | **POST** /payments/smart-accounts/{id}/transfers | Create Transfer
*SmartAccountApi* | [**smart_accounts_list**](docs/SmartAccountApi.md#smart_accounts_list) | **GET** /payments/smart-accounts | List
*SmartTransferApi* | [**smart_tranfers_preauthorizations_list**](docs/SmartTransferApi.md#smart_tranfers_preauthorizations_list) | **GET** /smart-transfers/preauthorizations | List preauthorizations
*SmartTransferApi* | [**smart_transfer_payment_create**](docs/SmartTransferApi.md#smart_transfer_payment_create) | **POST** /smart-transfers/payments | Create payment
*SmartTransferApi* | [**smart_transfer_paymentretrieve**](docs/SmartTransferApi.md#smart_transfer_paymentretrieve) | **GET** /smart-transfers/payments/{id} | Retrieve payment
*SmartTransferApi* | [**smart_transfer_preauthorization_create**](docs/SmartTransferApi.md#smart_transfer_preauthorization_create) | **POST** /smart-transfers/preauthorizations | Create preauthorization
*SmartTransferApi* | [**smart_transfer_preauthorization_retrieve**](docs/SmartTransferApi.md#smart_transfer_preauthorization_retrieve) | **GET** /smart-transfers/preauthorizations/{id} | Retrieve preauthorization
*TransactionApi* | [**transactions_list**](docs/TransactionApi.md#transactions_list) | **GET** /transactions | List
*TransactionApi* | [**transactions_retrieve**](docs/TransactionApi.md#transactions_retrieve) | **GET** /transactions/{id} | Retrieve
*TransactionApi* | [**transactions_update**](docs/TransactionApi.md#transactions_update) | **PATCH** /transactions/{id} | Update
*WebhookApi* | [**webhooks_create**](docs/WebhookApi.md#webhooks_create) | **POST** /webhooks | Create
*WebhookApi* | [**webhooks_delete**](docs/WebhookApi.md#webhooks_delete) | **DELETE** /webhooks/{id} | Delete
*WebhookApi* | [**webhooks_list**](docs/WebhookApi.md#webhooks_list) | **GET** /webhooks | List
*WebhookApi* | [**webhooks_retrieve**](docs/WebhookApi.md#webhooks_retrieve) | **GET** /webhooks/{id} | Retrieve
*WebhookApi* | [**webhooks_update**](docs/WebhookApi.md#webhooks_update) | **PATCH** /webhooks/{id} | Update
## Documentation For Models
- [Account](docs/Account.md)
- [AccountsList200Response](docs/AccountsList200Response.md)
- [Address](docs/Address.md)
- [AuthRequest](docs/AuthRequest.md)
- [AuthResponse](docs/AuthResponse.md)
- [BankData](docs/BankData.md)
- [BenefitLoan](docs/BenefitLoan.md)
- [BenefitLoanClient](docs/BenefitLoanClient.md)
- [BenefitResponse](docs/BenefitResponse.md)
- [BenefitResponsePayingInstitution](docs/BenefitResponsePayingInstitution.md)
- [BenefitsList200Response](docs/BenefitsList200Response.md)
- [Bill](docs/Bill.md)
- [BillFinanceCharge](docs/BillFinanceCharge.md)
- [BillsList200Response](docs/BillsList200Response.md)
- [Boleto](docs/Boleto.md)
- [BoletoPayer](docs/BoletoPayer.md)
- [BoletoRecipient](docs/BoletoRecipient.md)
- [BulkPayment](docs/BulkPayment.md)
- [BulkPaymentsList200Response](docs/BulkPaymentsList200Response.md)
- [CUSTOM](docs/CUSTOM.md)
- [Category](docs/Category.md)
- [ClientCategoryRule](docs/ClientCategoryRule.md)
- [Company](docs/Company.md)
- [ConnectTokenRequest](docs/ConnectTokenRequest.md)
- [ConnectTokenResponse](docs/ConnectTokenResponse.md)
- [Connector](docs/Connector.md)
- [ConnectorCredential](docs/ConnectorCredential.md)
- [ConnectorHealth](docs/ConnectorHealth.md)
- [ConnectorHealthDetails](docs/ConnectorHealthDetails.md)
- [ConnectorListResponse](docs/ConnectorListResponse.md)
- [ConnectorUserAction](docs/ConnectorUserAction.md)
- [Consent](docs/Consent.md)
- [CreateBoletoPaymentRequest](docs/CreateBoletoPaymentRequest.md)
- [CreateBulkPayment](docs/CreateBulkPayment.md)
- [CreateClientCategoryRule](docs/CreateClientCategoryRule.md)
- [CreateItem](docs/CreateItem.md)
- [CreateItemParameters](docs/CreateItemParameters.md)
- [CreateOrUpdatePaymentCustomer](docs/CreateOrUpdatePaymentCustomer.md)
- [CreatePaymentCustomerRequestBody](docs/CreatePaymentCustomerRequestBody.md)
- [CreatePaymentIntent](docs/CreatePaymentIntent.md)
- [CreatePaymentRecipient](docs/CreatePaymentRecipient.md)
- [CreatePaymentRequest](docs/CreatePaymentRequest.md)
- [CreatePaymentRequestSchedule](docs/CreatePaymentRequestSchedule.md)
- [CreatePixQrPaymentRequest](docs/CreatePixQrPaymentRequest.md)
- [CreateSmartAccountRequest](docs/CreateSmartAccountRequest.md)
- [CreateSmartAccountTransferRequest](docs/CreateSmartAccountTransferRequest.md)
- [CreateSmartTransferPayment](docs/CreateSmartTransferPayment.md)
- [CreateSmartTransferPreauthorization](docs/CreateSmartTransferPreauthorization.md)
- [CreateWebhook](docs/CreateWebhook.md)
- [CredentialSelectOption](docs/CredentialSelectOption.md)
- [CreditCardMetadata](docs/CreditCardMetadata.md)
- [CreditData](docs/CreditData.md)
- [DAILY](docs/DAILY.md)
- [Document](docs/Document.md)
- [Email](docs/Email.md)
- [GlobalErrorResponse](docs/GlobalErrorResponse.md)
- [ICountResponse](docs/ICountResponse.md)
- [IdentityRelation](docs/IdentityRelation.md)
- [IdentityResponse](docs/IdentityResponse.md)
- [IdentityResponseFinancialRelationships](docs/IdentityResponseFinancialRelationships.md)
- [IdentityResponseFinancialRelationshipsAccountsInner](docs/IdentityResponseFinancialRelationshipsAccountsInner.md)
- [IdentityResponseFinancialRelationshipsProcuratorsInner](docs/IdentityResponseFinancialRelationshipsProcuratorsInner.md)
- [IdentityResponseQualifications](docs/IdentityResponseQualifications.md)
- [IdentityResponseQualificationsInformedIncome](docs/IdentityResponseQualificationsInformedIncome.md)
- [IdentityResponseQualificationsInformedPatrimony](docs/IdentityResponseQualificationsInformedPatrimony.md)
- [Investment](docs/Investment.md)
- [InvestmentExpenses](docs/InvestmentExpenses.md)
- [InvestmentMetadata](docs/InvestmentMetadata.md)
- [InvestmentTransaction](docs/InvestmentTransaction.md)
- [InvestmentsList200Response](docs/InvestmentsList200Response.md)
- [Item](docs/Item.md)
- [ItemCreationErrorResponse](docs/ItemCreationErrorResponse.md)
- [ItemError](docs/ItemError.md)
- [ItemOptions](docs/ItemOptions.md)
- [Loan](docs/Loan.md)
- [LoanContractedFee](docs/LoanContractedFee.md)
- [LoanContractedFinanceCharge](docs/LoanContractedFinanceCharge.md)
- [LoanInstallmentBalloonPayment](docs/LoanInstallmentBalloonPayment.md)
- [LoanInstallmentBalloonPaymentAmount](docs/LoanInstallmentBalloonPaymentAmount.md)
- [LoanInstallments](docs/LoanInstallments.md)
- [LoanInterestRate](docs/LoanInterestRate.md)
- [LoanPaymentRelease](docs/LoanPaymentRelease.md)
- [LoanPaymentReleaseOverParcel](docs/LoanPaymentReleaseOverParcel.md)
- [LoanPaymentReleaseOverParcelCharge](docs/LoanPaymentReleaseOverParcelCharge.md)
- [LoanPaymentReleaseOverParcelFee](docs/LoanPaymentReleaseOverParcelFee.md)
- [LoanPayments](docs/LoanPayments.md)
- [LoanWarranty](docs/LoanWarranty.md)
- [LoansList200Response](docs/LoansList200Response.md)
- [MONTHLY](docs/MONTHLY.md)
- [Merchant](docs/Merchant.md)
- [NotAuthenticatedResponse](docs/NotAuthenticatedResponse.md)
- [PageResponseCategoryRules](docs/PageResponseCategoryRules.md)
- [PageResponseConsents](docs/PageResponseConsents.md)
- [PageResponseInvestmentTransactions](docs/PageResponseInvestmentTransactions.md)
- [PageResponseTransactions](docs/PageResponseTransactions.md)
- [ParameterValidationError](docs/ParameterValidationError.md)
- [ParameterValidationResponse](docs/ParameterValidationResponse.md)
- [PaymentCustomer](docs/PaymentCustomer.md)
- [PaymentCustomersList200Response](docs/PaymentCustomersList200Response.md)
- [PaymentData](docs/PaymentData.md)
- [PaymentDataBoletoMetadata](docs/PaymentDataBoletoMetadata.md)
- [PaymentDataParticipant](docs/PaymentDataParticipant.md)
- [PaymentInstitution](docs/PaymentInstitution.md)
- [PaymentIntent](docs/PaymentIntent.md)
- [PaymentIntentParameter](docs/PaymentIntentParameter.md)
- [PaymentIntentsList200Response](docs/PaymentIntentsList200Response.md)
- [PaymentReceipt](docs/PaymentReceipt.md)
- [PaymentReceiptBankAccount](docs/PaymentReceiptBankAccount.md)
- [PaymentReceiptPerson](docs/PaymentReceiptPerson.md)
- [PaymentRecipient](docs/PaymentRecipient.md)
- [PaymentRecipientAccount](docs/PaymentRecipientAccount.md)
- [PaymentRecipientsInstitutionList200Response](docs/PaymentRecipientsInstitutionList200Response.md)
- [PaymentRecipientsList200Response](docs/PaymentRecipientsList200Response.md)
- [PaymentRequest](docs/PaymentRequest.md)
- [PaymentRequestCallbackUrls](docs/PaymentRequestCallbackUrls.md)
- [PaymentRequestReceiptList200Response](docs/PaymentRequestReceiptList200Response.md)
- [PaymentRequestSchedule](docs/PaymentRequestSchedule.md)
- [PaymentRequestsList200Response](docs/PaymentRequestsList200Response.md)
- [PaymentSchedulesList200Response](docs/PaymentSchedulesList200Response.md)
- [PhoneNumber](docs/PhoneNumber.md)
- [PixData](docs/PixData.md)
- [SINGLE](docs/SINGLE.md)
- [SchedulePayment](docs/SchedulePayment.md)
- [SmartAccount](docs/SmartAccount.md)
- [SmartAccountAddress](docs/SmartAccountAddress.md)
- [SmartAccountBalance](docs/SmartAccountBalance.md)
- [SmartAccountTransfer](docs/SmartAccountTransfer.md)
- [SmartAccountsList200Response](docs/SmartAccountsList200Response.md)
- [SmartTranfersPreauthorizationsList200Response](docs/SmartTranfersPreauthorizationsList200Response.md)
- [SmartTransferCallbackUrls](docs/SmartTransferCallbackUrls.md)
- [SmartTransferPayment](docs/SmartTransferPayment.md)
- [SmartTransferPreauthorization](docs/SmartTransferPreauthorization.md)
- [SmartTransferPreauthorizationParameter](docs/SmartTransferPreauthorizationParameter.md)
- [StatusDetail](docs/StatusDetail.md)
- [StatusDetailProduct](docs/StatusDetailProduct.md)
- [StatusDetailProductWarning](docs/StatusDetailProductWarning.md)
- [Transaction](docs/Transaction.md)
- [UpdateItem](docs/UpdateItem.md)
- [UpdateItemParameters](docs/UpdateItemParameters.md)
- [UpdatePaymentRecipient](docs/UpdatePaymentRecipient.md)
- [UpdatePaymentRequest](docs/UpdatePaymentRequest.md)
- [UpdateTransaction](docs/UpdateTransaction.md)
- [WEEKLY](docs/WEEKLY.md)
- [Webhook](docs/Webhook.md)
- [WebhookCreationErrorResponse](docs/WebhookCreationErrorResponse.md)
- [WebhooksList200Response](docs/WebhooksList200Response.md)
<a id="documentation-for-authorization"></a>
## Documentation For Authorization
Authentication schemes defined for the API:
<a id="default"></a>
### default
- **Type**: API key
- **API key parameter name**: X-API-KEY
- **Location**: HTTP header
## Author
hello@pluggy.ai
Raw data
{
"_id": null,
"home_page": "https://github.com/diraol/pluggy-python",
"name": "pluggy-sdk",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "OpenAPI, OpenAPI-Generator, Pluggy API",
"author": "Pluggy",
"author_email": "hello@pluggy.ai",
"download_url": "https://files.pythonhosted.org/packages/3e/2e/2f134d651f60982c9929958f24f5687cc4e298e7bcc4d3861de3ce6238e9/pluggy_sdk-1.0.0.post36.tar.gz",
"platform": null,
"description": "# pluggy-sdk\nPluggy's main API to review data and execute connectors\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 1.0.0\n- Package version: 1.0.0.post36\n- Generator version: 7.12.0-SNAPSHOT\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\nFor more information, please visit [https://pluggy.ai](https://pluggy.ai)\n\n## Requirements.\n\nPython 3.8+\n\n## Installation & Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)\n\nThen import the package:\n```python\nimport pluggy_sdk\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 pluggy_sdk\n```\n\n### Tests\n\nExecute `pytest` to run the tests.\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport pluggy_sdk\nfrom pluggy_sdk.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to https://api.pluggy.ai\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = pluggy_sdk.Configuration(\n host = \"https://api.pluggy.ai\"\n)\n\n# The client must configure the authentication and authorization parameters\n# in accordance with the API server security policy.\n# Examples for each auth method are provided below, use the example that\n# satisfies your auth use case.\n\n# Configure API key authorization: default\nconfiguration.api_key['default'] = os.environ[\"API_KEY\"]\n\n# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n# configuration.api_key_prefix['default'] = 'Bearer'\n\n\n# Enter a context with an instance of the API client\nwith pluggy_sdk.ApiClient(configuration) as api_client:\n # Create an instance of the API class\n api_instance = pluggy_sdk.AccountApi(api_client)\n item_id = 'd0f8a8c0-e8e3-11e9-b210-d663bd873d93' # str | Item primary identifier\n type = 'BANK' # str | Parameter to filter between bank accounts and credit accounts (optional)\n\n try:\n # List\n api_response = api_instance.accounts_list(item_id, type=type)\n print(\"The response of AccountApi->accounts_list:\\n\")\n pprint(api_response)\n except ApiException as e:\n print(\"Exception when calling AccountApi->accounts_list: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.pluggy.ai*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*AccountApi* | [**accounts_list**](docs/AccountApi.md#accounts_list) | **GET** /accounts | List\n*AccountApi* | [**accounts_retrieve**](docs/AccountApi.md#accounts_retrieve) | **GET** /accounts/{id} | Retrieve\n*AuthApi* | [**auth_create**](docs/AuthApi.md#auth_create) | **POST** /auth | Create API Key\n*AuthApi* | [**connect_token_create**](docs/AuthApi.md#connect_token_create) | **POST** /connect_token | Create Connect Token\n*BenefitApi* | [**benefit_retrieve_by_id**](docs/BenefitApi.md#benefit_retrieve_by_id) | **GET** /benefits/{id} | Retrieve\n*BenefitApi* | [**benefits_list**](docs/BenefitApi.md#benefits_list) | **GET** /benefits | List\n*BillApi* | [**bills_list**](docs/BillApi.md#bills_list) | **GET** /bills | List\n*BillApi* | [**bills_retrieve**](docs/BillApi.md#bills_retrieve) | **GET** /bills/{id} | Retrieve\n*BulkPaymentApi* | [**bulk_payment_create**](docs/BulkPaymentApi.md#bulk_payment_create) | **POST** /payments/bulk | Create\n*BulkPaymentApi* | [**bulk_payment_delete**](docs/BulkPaymentApi.md#bulk_payment_delete) | **DELETE** /payments/bulk/{id} | Delete\n*BulkPaymentApi* | [**bulk_payment_retrieve**](docs/BulkPaymentApi.md#bulk_payment_retrieve) | **GET** /payments/bulk/{id} | Retrieve\n*BulkPaymentApi* | [**bulk_payments_list**](docs/BulkPaymentApi.md#bulk_payments_list) | **GET** /payments/bulk | List\n*CategoryApi* | [**categories_list**](docs/CategoryApi.md#categories_list) | **GET** /categories | List\n*CategoryApi* | [**categories_retrieve**](docs/CategoryApi.md#categories_retrieve) | **GET** /categories/{id} | Retrieve\n*CategoryApi* | [**client_category_rules_create**](docs/CategoryApi.md#client_category_rules_create) | **POST** /categories/rules | Create Category Rule\n*CategoryApi* | [**client_category_rules_list**](docs/CategoryApi.md#client_category_rules_list) | **GET** /categories/rules | List Category Rules\n*ConnectorApi* | [**connector_retrieve**](docs/ConnectorApi.md#connector_retrieve) | **GET** /connectors/{id} | Retrieve\n*ConnectorApi* | [**connectors_list**](docs/ConnectorApi.md#connectors_list) | **GET** /connectors | List\n*ConnectorApi* | [**connectors_validate**](docs/ConnectorApi.md#connectors_validate) | **POST** /connectors/{id}/validate | Validate\n*ConsentApi* | [**consent_retrieve**](docs/ConsentApi.md#consent_retrieve) | **GET** /consents/{id} | Retrieve\n*ConsentApi* | [**consents_list**](docs/ConsentApi.md#consents_list) | **GET** /consents | List\n*IdentityApi* | [**identity_find_by_item**](docs/IdentityApi.md#identity_find_by_item) | **GET** /identity | Find by item\n*IdentityApi* | [**identity_retrieve**](docs/IdentityApi.md#identity_retrieve) | **GET** /identity/{id} | Retrieve\n*InvestmentApi* | [**investment_transactions_list**](docs/InvestmentApi.md#investment_transactions_list) | **GET** /investments/{id}/transactions | List investment transactions\n*InvestmentApi* | [**investments_list**](docs/InvestmentApi.md#investments_list) | **GET** /investments | List\n*InvestmentApi* | [**investments_retrieve**](docs/InvestmentApi.md#investments_retrieve) | **GET** /investments/{id} | Retrieve\n*ItemsApi* | [**items_create**](docs/ItemsApi.md#items_create) | **POST** /items | Create\n*ItemsApi* | [**items_delete**](docs/ItemsApi.md#items_delete) | **DELETE** /items/{id} | Delete\n*ItemsApi* | [**items_retrieve**](docs/ItemsApi.md#items_retrieve) | **GET** /items/{id} | Retrieve\n*ItemsApi* | [**items_send_mfa**](docs/ItemsApi.md#items_send_mfa) | **POST** /items/{id}/mfa | Send MFA\n*ItemsApi* | [**items_update**](docs/ItemsApi.md#items_update) | **PATCH** /items/{id} | Update\n*LoanApi* | [**loans_list**](docs/LoanApi.md#loans_list) | **GET** /loans | List\n*LoanApi* | [**loans_retrieve**](docs/LoanApi.md#loans_retrieve) | **GET** /loans/{id} | Retrieve\n*PaymentCustomerApi* | [**payment_customer_create**](docs/PaymentCustomerApi.md#payment_customer_create) | **POST** /payments/customers | Create\n*PaymentCustomerApi* | [**payment_customer_delete**](docs/PaymentCustomerApi.md#payment_customer_delete) | **DELETE** /payments/customers/{id} | Delete\n*PaymentCustomerApi* | [**payment_customer_retrieve**](docs/PaymentCustomerApi.md#payment_customer_retrieve) | **GET** /payments/customers/{id} | Retrieve\n*PaymentCustomerApi* | [**payment_customer_update**](docs/PaymentCustomerApi.md#payment_customer_update) | **PATCH** /payments/customers/{id} | Update\n*PaymentCustomerApi* | [**payment_customers_list**](docs/PaymentCustomerApi.md#payment_customers_list) | **GET** /payments/customers | List\n*PaymentIntentApi* | [**payment_intent_create**](docs/PaymentIntentApi.md#payment_intent_create) | **POST** /payments/intents | Create\n*PaymentIntentApi* | [**payment_intent_retrieve**](docs/PaymentIntentApi.md#payment_intent_retrieve) | **GET** /payments/intents/{id} | Retrieve\n*PaymentIntentApi* | [**payment_intents_list**](docs/PaymentIntentApi.md#payment_intents_list) | **GET** /payments/intents | List\n*PaymentRecipientApi* | [**payment_recipient_create**](docs/PaymentRecipientApi.md#payment_recipient_create) | **POST** /payments/recipients | Create\n*PaymentRecipientApi* | [**payment_recipient_delete**](docs/PaymentRecipientApi.md#payment_recipient_delete) | **DELETE** /payments/recipients/{id} | Delete\n*PaymentRecipientApi* | [**payment_recipient_institutions_retrieve**](docs/PaymentRecipientApi.md#payment_recipient_institutions_retrieve) | **GET** /payments/recipients/institutions/{id} | Retrieve Institution\n*PaymentRecipientApi* | [**payment_recipient_retrieve**](docs/PaymentRecipientApi.md#payment_recipient_retrieve) | **GET** /payments/recipients/{id} | Retrieve\n*PaymentRecipientApi* | [**payment_recipient_update**](docs/PaymentRecipientApi.md#payment_recipient_update) | **PATCH** /payments/recipients/{id} | Update\n*PaymentRecipientApi* | [**payment_recipients_institution_list**](docs/PaymentRecipientApi.md#payment_recipients_institution_list) | **GET** /payments/recipients/institutions | List Institutions\n*PaymentRecipientApi* | [**payment_recipients_list**](docs/PaymentRecipientApi.md#payment_recipients_list) | **GET** /payments/recipients | List\n*PaymentRequestApi* | [**payment_request_create**](docs/PaymentRequestApi.md#payment_request_create) | **POST** /payments/requests | Create\n*PaymentRequestApi* | [**payment_request_create_boleto**](docs/PaymentRequestApi.md#payment_request_create_boleto) | **POST** /payments/requests/boleto | Create boleto payment request\n*PaymentRequestApi* | [**payment_request_create_pix_qr**](docs/PaymentRequestApi.md#payment_request_create_pix_qr) | **POST** /payments/requests/pix-qr | Create PIX QR payment request\n*PaymentRequestApi* | [**payment_request_delete**](docs/PaymentRequestApi.md#payment_request_delete) | **DELETE** /payments/requests/{id} | Delete\n*PaymentRequestApi* | [**payment_request_receipt_create**](docs/PaymentRequestApi.md#payment_request_receipt_create) | **POST** /payments/requests/{id}/receipts | Create Payment Receipt\n*PaymentRequestApi* | [**payment_request_receipt_list**](docs/PaymentRequestApi.md#payment_request_receipt_list) | **GET** /payments/requests/{id}/receipts | List Payment Receipts\n*PaymentRequestApi* | [**payment_request_receipt_retrieve**](docs/PaymentRequestApi.md#payment_request_receipt_retrieve) | **GET** /payments/requests/{payment-request-id}/receipts/{payment-receipt-id} | Retrieve Payment Receipt\n*PaymentRequestApi* | [**payment_request_refund**](docs/PaymentRequestApi.md#payment_request_refund) | **POST** /payments/requests/{id}/refund | Refund Payment Request\n*PaymentRequestApi* | [**payment_request_retrieve**](docs/PaymentRequestApi.md#payment_request_retrieve) | **GET** /payments/requests/{id} | Retrieve\n*PaymentRequestApi* | [**payment_request_update**](docs/PaymentRequestApi.md#payment_request_update) | **PATCH** /payments/requests/{id} | Update\n*PaymentRequestApi* | [**payment_requests_list**](docs/PaymentRequestApi.md#payment_requests_list) | **GET** /payments/requests | List\n*PaymentScheduleApi* | [**payment_schedules_cancel**](docs/PaymentScheduleApi.md#payment_schedules_cancel) | **POST** /payments/requests/{id}/schedules/cancel | Cancel Payment Schedule Authorization\n*PaymentScheduleApi* | [**payment_schedules_cancel_specific**](docs/PaymentScheduleApi.md#payment_schedules_cancel_specific) | **POST** /payments/requests/{id}/schedules/{scheduleId}/cancel | Cancel Payment Schedule Authorization\n*PaymentScheduleApi* | [**payment_schedules_list**](docs/PaymentScheduleApi.md#payment_schedules_list) | **GET** /payments/requests/{id}/schedules | List Schedules\n*SmartAccountApi* | [**smart_account_balance_retrieve**](docs/SmartAccountApi.md#smart_account_balance_retrieve) | **GET** /payments/smart-accounts/{id}/balance | Retrieve Balance\n*SmartAccountApi* | [**smart_account_create**](docs/SmartAccountApi.md#smart_account_create) | **POST** /payments/smart-accounts | Create\n*SmartAccountApi* | [**smart_account_retrieve**](docs/SmartAccountApi.md#smart_account_retrieve) | **GET** /payments/smart-accounts/{id} | Retrieve\n*SmartAccountApi* | [**smart_account_transfer**](docs/SmartAccountApi.md#smart_account_transfer) | **GET** /payments/smart-accounts/{id}/transfers/{transfer_id} | Retrieve Transfer\n*SmartAccountApi* | [**smart_account_transfer_create**](docs/SmartAccountApi.md#smart_account_transfer_create) | **POST** /payments/smart-accounts/{id}/transfers | Create Transfer\n*SmartAccountApi* | [**smart_accounts_list**](docs/SmartAccountApi.md#smart_accounts_list) | **GET** /payments/smart-accounts | List\n*SmartTransferApi* | [**smart_tranfers_preauthorizations_list**](docs/SmartTransferApi.md#smart_tranfers_preauthorizations_list) | **GET** /smart-transfers/preauthorizations | List preauthorizations\n*SmartTransferApi* | [**smart_transfer_payment_create**](docs/SmartTransferApi.md#smart_transfer_payment_create) | **POST** /smart-transfers/payments | Create payment\n*SmartTransferApi* | [**smart_transfer_paymentretrieve**](docs/SmartTransferApi.md#smart_transfer_paymentretrieve) | **GET** /smart-transfers/payments/{id} | Retrieve payment\n*SmartTransferApi* | [**smart_transfer_preauthorization_create**](docs/SmartTransferApi.md#smart_transfer_preauthorization_create) | **POST** /smart-transfers/preauthorizations | Create preauthorization\n*SmartTransferApi* | [**smart_transfer_preauthorization_retrieve**](docs/SmartTransferApi.md#smart_transfer_preauthorization_retrieve) | **GET** /smart-transfers/preauthorizations/{id} | Retrieve preauthorization\n*TransactionApi* | [**transactions_list**](docs/TransactionApi.md#transactions_list) | **GET** /transactions | List\n*TransactionApi* | [**transactions_retrieve**](docs/TransactionApi.md#transactions_retrieve) | **GET** /transactions/{id} | Retrieve\n*TransactionApi* | [**transactions_update**](docs/TransactionApi.md#transactions_update) | **PATCH** /transactions/{id} | Update\n*WebhookApi* | [**webhooks_create**](docs/WebhookApi.md#webhooks_create) | **POST** /webhooks | Create\n*WebhookApi* | [**webhooks_delete**](docs/WebhookApi.md#webhooks_delete) | **DELETE** /webhooks/{id} | Delete\n*WebhookApi* | [**webhooks_list**](docs/WebhookApi.md#webhooks_list) | **GET** /webhooks | List\n*WebhookApi* | [**webhooks_retrieve**](docs/WebhookApi.md#webhooks_retrieve) | **GET** /webhooks/{id} | Retrieve\n*WebhookApi* | [**webhooks_update**](docs/WebhookApi.md#webhooks_update) | **PATCH** /webhooks/{id} | Update\n\n\n## Documentation For Models\n\n - [Account](docs/Account.md)\n - [AccountsList200Response](docs/AccountsList200Response.md)\n - [Address](docs/Address.md)\n - [AuthRequest](docs/AuthRequest.md)\n - [AuthResponse](docs/AuthResponse.md)\n - [BankData](docs/BankData.md)\n - [BenefitLoan](docs/BenefitLoan.md)\n - [BenefitLoanClient](docs/BenefitLoanClient.md)\n - [BenefitResponse](docs/BenefitResponse.md)\n - [BenefitResponsePayingInstitution](docs/BenefitResponsePayingInstitution.md)\n - [BenefitsList200Response](docs/BenefitsList200Response.md)\n - [Bill](docs/Bill.md)\n - [BillFinanceCharge](docs/BillFinanceCharge.md)\n - [BillsList200Response](docs/BillsList200Response.md)\n - [Boleto](docs/Boleto.md)\n - [BoletoPayer](docs/BoletoPayer.md)\n - [BoletoRecipient](docs/BoletoRecipient.md)\n - [BulkPayment](docs/BulkPayment.md)\n - [BulkPaymentsList200Response](docs/BulkPaymentsList200Response.md)\n - [CUSTOM](docs/CUSTOM.md)\n - [Category](docs/Category.md)\n - [ClientCategoryRule](docs/ClientCategoryRule.md)\n - [Company](docs/Company.md)\n - [ConnectTokenRequest](docs/ConnectTokenRequest.md)\n - [ConnectTokenResponse](docs/ConnectTokenResponse.md)\n - [Connector](docs/Connector.md)\n - [ConnectorCredential](docs/ConnectorCredential.md)\n - [ConnectorHealth](docs/ConnectorHealth.md)\n - [ConnectorHealthDetails](docs/ConnectorHealthDetails.md)\n - [ConnectorListResponse](docs/ConnectorListResponse.md)\n - [ConnectorUserAction](docs/ConnectorUserAction.md)\n - [Consent](docs/Consent.md)\n - [CreateBoletoPaymentRequest](docs/CreateBoletoPaymentRequest.md)\n - [CreateBulkPayment](docs/CreateBulkPayment.md)\n - [CreateClientCategoryRule](docs/CreateClientCategoryRule.md)\n - [CreateItem](docs/CreateItem.md)\n - [CreateItemParameters](docs/CreateItemParameters.md)\n - [CreateOrUpdatePaymentCustomer](docs/CreateOrUpdatePaymentCustomer.md)\n - [CreatePaymentCustomerRequestBody](docs/CreatePaymentCustomerRequestBody.md)\n - [CreatePaymentIntent](docs/CreatePaymentIntent.md)\n - [CreatePaymentRecipient](docs/CreatePaymentRecipient.md)\n - [CreatePaymentRequest](docs/CreatePaymentRequest.md)\n - [CreatePaymentRequestSchedule](docs/CreatePaymentRequestSchedule.md)\n - [CreatePixQrPaymentRequest](docs/CreatePixQrPaymentRequest.md)\n - [CreateSmartAccountRequest](docs/CreateSmartAccountRequest.md)\n - [CreateSmartAccountTransferRequest](docs/CreateSmartAccountTransferRequest.md)\n - [CreateSmartTransferPayment](docs/CreateSmartTransferPayment.md)\n - [CreateSmartTransferPreauthorization](docs/CreateSmartTransferPreauthorization.md)\n - [CreateWebhook](docs/CreateWebhook.md)\n - [CredentialSelectOption](docs/CredentialSelectOption.md)\n - [CreditCardMetadata](docs/CreditCardMetadata.md)\n - [CreditData](docs/CreditData.md)\n - [DAILY](docs/DAILY.md)\n - [Document](docs/Document.md)\n - [Email](docs/Email.md)\n - [GlobalErrorResponse](docs/GlobalErrorResponse.md)\n - [ICountResponse](docs/ICountResponse.md)\n - [IdentityRelation](docs/IdentityRelation.md)\n - [IdentityResponse](docs/IdentityResponse.md)\n - [IdentityResponseFinancialRelationships](docs/IdentityResponseFinancialRelationships.md)\n - [IdentityResponseFinancialRelationshipsAccountsInner](docs/IdentityResponseFinancialRelationshipsAccountsInner.md)\n - [IdentityResponseFinancialRelationshipsProcuratorsInner](docs/IdentityResponseFinancialRelationshipsProcuratorsInner.md)\n - [IdentityResponseQualifications](docs/IdentityResponseQualifications.md)\n - [IdentityResponseQualificationsInformedIncome](docs/IdentityResponseQualificationsInformedIncome.md)\n - [IdentityResponseQualificationsInformedPatrimony](docs/IdentityResponseQualificationsInformedPatrimony.md)\n - [Investment](docs/Investment.md)\n - [InvestmentExpenses](docs/InvestmentExpenses.md)\n - [InvestmentMetadata](docs/InvestmentMetadata.md)\n - [InvestmentTransaction](docs/InvestmentTransaction.md)\n - [InvestmentsList200Response](docs/InvestmentsList200Response.md)\n - [Item](docs/Item.md)\n - [ItemCreationErrorResponse](docs/ItemCreationErrorResponse.md)\n - [ItemError](docs/ItemError.md)\n - [ItemOptions](docs/ItemOptions.md)\n - [Loan](docs/Loan.md)\n - [LoanContractedFee](docs/LoanContractedFee.md)\n - [LoanContractedFinanceCharge](docs/LoanContractedFinanceCharge.md)\n - [LoanInstallmentBalloonPayment](docs/LoanInstallmentBalloonPayment.md)\n - [LoanInstallmentBalloonPaymentAmount](docs/LoanInstallmentBalloonPaymentAmount.md)\n - [LoanInstallments](docs/LoanInstallments.md)\n - [LoanInterestRate](docs/LoanInterestRate.md)\n - [LoanPaymentRelease](docs/LoanPaymentRelease.md)\n - [LoanPaymentReleaseOverParcel](docs/LoanPaymentReleaseOverParcel.md)\n - [LoanPaymentReleaseOverParcelCharge](docs/LoanPaymentReleaseOverParcelCharge.md)\n - [LoanPaymentReleaseOverParcelFee](docs/LoanPaymentReleaseOverParcelFee.md)\n - [LoanPayments](docs/LoanPayments.md)\n - [LoanWarranty](docs/LoanWarranty.md)\n - [LoansList200Response](docs/LoansList200Response.md)\n - [MONTHLY](docs/MONTHLY.md)\n - [Merchant](docs/Merchant.md)\n - [NotAuthenticatedResponse](docs/NotAuthenticatedResponse.md)\n - [PageResponseCategoryRules](docs/PageResponseCategoryRules.md)\n - [PageResponseConsents](docs/PageResponseConsents.md)\n - [PageResponseInvestmentTransactions](docs/PageResponseInvestmentTransactions.md)\n - [PageResponseTransactions](docs/PageResponseTransactions.md)\n - [ParameterValidationError](docs/ParameterValidationError.md)\n - [ParameterValidationResponse](docs/ParameterValidationResponse.md)\n - [PaymentCustomer](docs/PaymentCustomer.md)\n - [PaymentCustomersList200Response](docs/PaymentCustomersList200Response.md)\n - [PaymentData](docs/PaymentData.md)\n - [PaymentDataBoletoMetadata](docs/PaymentDataBoletoMetadata.md)\n - [PaymentDataParticipant](docs/PaymentDataParticipant.md)\n - [PaymentInstitution](docs/PaymentInstitution.md)\n - [PaymentIntent](docs/PaymentIntent.md)\n - [PaymentIntentParameter](docs/PaymentIntentParameter.md)\n - [PaymentIntentsList200Response](docs/PaymentIntentsList200Response.md)\n - [PaymentReceipt](docs/PaymentReceipt.md)\n - [PaymentReceiptBankAccount](docs/PaymentReceiptBankAccount.md)\n - [PaymentReceiptPerson](docs/PaymentReceiptPerson.md)\n - [PaymentRecipient](docs/PaymentRecipient.md)\n - [PaymentRecipientAccount](docs/PaymentRecipientAccount.md)\n - [PaymentRecipientsInstitutionList200Response](docs/PaymentRecipientsInstitutionList200Response.md)\n - [PaymentRecipientsList200Response](docs/PaymentRecipientsList200Response.md)\n - [PaymentRequest](docs/PaymentRequest.md)\n - [PaymentRequestCallbackUrls](docs/PaymentRequestCallbackUrls.md)\n - [PaymentRequestReceiptList200Response](docs/PaymentRequestReceiptList200Response.md)\n - [PaymentRequestSchedule](docs/PaymentRequestSchedule.md)\n - [PaymentRequestsList200Response](docs/PaymentRequestsList200Response.md)\n - [PaymentSchedulesList200Response](docs/PaymentSchedulesList200Response.md)\n - [PhoneNumber](docs/PhoneNumber.md)\n - [PixData](docs/PixData.md)\n - [SINGLE](docs/SINGLE.md)\n - [SchedulePayment](docs/SchedulePayment.md)\n - [SmartAccount](docs/SmartAccount.md)\n - [SmartAccountAddress](docs/SmartAccountAddress.md)\n - [SmartAccountBalance](docs/SmartAccountBalance.md)\n - [SmartAccountTransfer](docs/SmartAccountTransfer.md)\n - [SmartAccountsList200Response](docs/SmartAccountsList200Response.md)\n - [SmartTranfersPreauthorizationsList200Response](docs/SmartTranfersPreauthorizationsList200Response.md)\n - [SmartTransferCallbackUrls](docs/SmartTransferCallbackUrls.md)\n - [SmartTransferPayment](docs/SmartTransferPayment.md)\n - [SmartTransferPreauthorization](docs/SmartTransferPreauthorization.md)\n - [SmartTransferPreauthorizationParameter](docs/SmartTransferPreauthorizationParameter.md)\n - [StatusDetail](docs/StatusDetail.md)\n - [StatusDetailProduct](docs/StatusDetailProduct.md)\n - [StatusDetailProductWarning](docs/StatusDetailProductWarning.md)\n - [Transaction](docs/Transaction.md)\n - [UpdateItem](docs/UpdateItem.md)\n - [UpdateItemParameters](docs/UpdateItemParameters.md)\n - [UpdatePaymentRecipient](docs/UpdatePaymentRecipient.md)\n - [UpdatePaymentRequest](docs/UpdatePaymentRequest.md)\n - [UpdateTransaction](docs/UpdateTransaction.md)\n - [WEEKLY](docs/WEEKLY.md)\n - [Webhook](docs/Webhook.md)\n - [WebhookCreationErrorResponse](docs/WebhookCreationErrorResponse.md)\n - [WebhooksList200Response](docs/WebhooksList200Response.md)\n\n\n<a id=\"documentation-for-authorization\"></a>\n## Documentation For Authorization\n\n\nAuthentication schemes defined for the API:\n<a id=\"default\"></a>\n### default\n\n- **Type**: API key\n- **API key parameter name**: X-API-KEY\n- **Location**: HTTP header\n\n\n## Author\n\nhello@pluggy.ai\n\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Pluggy API",
"version": "1.0.0.post36",
"project_urls": {
"Homepage": "https://github.com/diraol/pluggy-python"
},
"split_keywords": [
"openapi",
" openapi-generator",
" pluggy api"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "bf247e34069237a04fa235ac78f21d01b125d018ace51832471ec383f2bbc231",
"md5": "59a32fcfcb56201f6075b2f33593d45f",
"sha256": "88a5649ef4d832829c3a3028fb584865591e50d66e1694085919e09f36eddb45"
},
"downloads": -1,
"filename": "pluggy_sdk-1.0.0.post36-py3-none-any.whl",
"has_sig": false,
"md5_digest": "59a32fcfcb56201f6075b2f33593d45f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 392092,
"upload_time": "2025-02-01T01:27:29",
"upload_time_iso_8601": "2025-02-01T01:27:29.113827Z",
"url": "https://files.pythonhosted.org/packages/bf/24/7e34069237a04fa235ac78f21d01b125d018ace51832471ec383f2bbc231/pluggy_sdk-1.0.0.post36-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3e2e2f134d651f60982c9929958f24f5687cc4e298e7bcc4d3861de3ce6238e9",
"md5": "fa8aaf77039d78a4c9d74cfb61e4d2b0",
"sha256": "528730af21e5fc44b40069fabf29b668956b5712d483757ca1a1faada084e250"
},
"downloads": -1,
"filename": "pluggy_sdk-1.0.0.post36.tar.gz",
"has_sig": false,
"md5_digest": "fa8aaf77039d78a4c9d74cfb61e4d2b0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 167171,
"upload_time": "2025-02-01T01:27:31",
"upload_time_iso_8601": "2025-02-01T01:27:31.425544Z",
"url": "https://files.pythonhosted.org/packages/3e/2e/2f134d651f60982c9929958f24f5687cc4e298e7bcc4d3861de3ce6238e9/pluggy_sdk-1.0.0.post36.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-01 01:27:31",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "diraol",
"github_project": "pluggy-python",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pluggy-sdk"
}