Skip to main content

Devdraft AI Payment & Business Management API

Project description

devdraft-sdk

A comprehensive payment processing and business management API that enables seamless integration of cryptocurrency and traditional payment methods.

This Python package is automatically generated by the OpenAPI Generator project:

  • API version: 1.0.0
  • Package version: 1.0.0
  • Generator version: 7.17.0
  • Build package: org.openapitools.codegen.languages.PythonClientCodegen

Requirements.

Python 3.9+

Installation & Usage

pip install

If the python package is hosted on a repository, you can install directly using:

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:

import devdraft

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import devdraft

Tests

Execute pytest to run the tests.

Getting Started

Please follow the installation procedure and then run the following:

import devdraft
from devdraft.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.devdraft.ai
# See configuration.py for a list of all supported configuration parameters.
configuration = devdraft.Configuration(
    host = "https://api.devdraft.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: x-client-secret
configuration.api_key['x-client-secret'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['x-client-secret'] = 'Bearer'

# Configure API key authorization: x-client-key
configuration.api_key['x-client-key'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['x-client-key'] = 'Bearer'


# Enter a context with an instance of the API client
with devdraft.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = devdraft.APIHealthApi(api_client)

    try:
        # Authenticated health check endpoint
        api_response = api_instance.health_controller_check_v0()
        print("The response of APIHealthApi->health_controller_check_v0:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling APIHealthApi->health_controller_check_v0: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to https://api.devdraft.ai

Class Method HTTP request Description
APIHealthApi health_controller_check_v0 GET /api/v0/health Authenticated health check endpoint
APIHealthApi health_controller_public_health_check_v0 GET /api/v0/health/public Public health check endpoint
AppBalancesApi balance_controller_get_all_balances GET /api/v0/balance Get all stablecoin balances for an app
AppBalancesApi balance_controller_get_eurc_balance GET /api/v0/balance/eurc Get EURC balance for an app
AppBalancesApi balance_controller_get_usdc_balance GET /api/v0/balance/usdc Get USDC balance for an app
CustomersApi customer_controller_create POST /api/v0/customers Create a new customer
CustomersApi customer_controller_find_all GET /api/v0/customers Get all customers with filters
CustomersApi customer_controller_find_one GET /api/v0/customers/{id} Get a customer by ID
CustomersApi customer_controller_update PATCH /api/v0/customers/{id} Update a customer
ExchangeRatesApi exchange_rate_controller_get_eurto_usd_rate GET /api/v0/exchange-rate/eur-to-usd Get EUR to USD exchange rate
ExchangeRatesApi exchange_rate_controller_get_exchange_rate GET /api/v0/exchange-rate Get exchange rate between specified currencies
ExchangeRatesApi exchange_rate_controller_get_usdto_eur_rate GET /api/v0/exchange-rate/usd-to-eur Get USD to EUR exchange rate
InvoicesApi invoice_controller_create POST /api/v0/invoices Create a new invoice
InvoicesApi invoice_controller_find_all GET /api/v0/invoices Get all invoices
InvoicesApi invoice_controller_find_one GET /api/v0/invoices/{id} Get an invoice by ID
InvoicesApi invoice_controller_update PUT /api/v0/invoices/{id} Update an invoice
LiquidationAddressesApi liquidation_address_controller_create_liquidation_address POST /api/v0/customers/{customerId}/liquidation_addresses Create a new liquidation address for a customer
LiquidationAddressesApi liquidation_address_controller_get_liquidation_address GET /api/v0/customers/{customerId}/liquidation_addresses/{liquidationAddressId} Get a specific liquidation address
LiquidationAddressesApi liquidation_address_controller_get_liquidation_addresses GET /api/v0/customers/{customerId}/liquidation_addresses Get all liquidation addresses for a customer
PaymentIntentsApi payment_intent_controller_create_bank_payment_intent POST /api/v0/payment-intents/bank Create a bank payment intent
PaymentIntentsApi payment_intent_controller_create_stable_payment_intent POST /api/v0/payment-intents/stablecoin Create a stable payment intent
PaymentLinksApi payment_links_controller_create POST /api/v0/payment-links Create a new payment link
PaymentLinksApi payment_links_controller_find_all GET /api/v0/payment-links Get all payment links
PaymentLinksApi payment_links_controller_find_one GET /api/v0/payment-links/{id} Get a payment link by ID
PaymentLinksApi payment_links_controller_update PUT /api/v0/payment-links/{id} Update a payment link
ProductsApi product_controller_create POST /api/v0/products Create a new product
ProductsApi product_controller_find_all GET /api/v0/products Get all products
ProductsApi product_controller_find_one GET /api/v0/products/{id} Get a product by ID
ProductsApi product_controller_remove DELETE /api/v0/products/{id} Delete a product
ProductsApi product_controller_update PUT /api/v0/products/{id} Update a product
ProductsApi product_controller_upload_image POST /api/v0/products/{id}/images Upload images for a product
TaxesApi tax_controller_create POST /api/v0/taxes Create a new tax
TaxesApi tax_controller_delete_without_id DELETE /api/v0/taxes Tax ID required for deletion
TaxesApi tax_controller_find_all GET /api/v0/taxes Get all taxes with filters
TaxesApi tax_controller_find_one GET /api/v0/taxes/{id} Get a tax by ID
TaxesApi tax_controller_remove DELETE /api/v0/taxes/{id} Delete a tax
TaxesApi tax_controller_update PUT /api/v0/taxes/{id} Update a tax
TaxesApi tax_controller_update_without_id PUT /api/v0/taxes Tax ID required for updates
TestPaymentsApi test_payment_controller_create_payment_v0 POST /api/v0/test-payment Process a test payment
TestPaymentsApi test_payment_controller_get_payment_v0 GET /api/v0/test-payment/{id} Get payment details by ID
TestPaymentsApi test_payment_controller_refund_payment_v0 POST /api/v0/test-payment/{id}/refund Refund a payment
TransfersApi transfer_controller_create_direct_bank_transfer POST /api/v0/transfers/direct-bank Create a direct bank transfer
TransfersApi transfer_controller_create_direct_wallet_transfer POST /api/v0/transfers/direct-wallet Create a direct wallet transfer
TransfersApi transfer_controller_create_external_bank_transfer POST /api/v0/transfers/external-bank-transfer Create an external bank transfer
TransfersApi transfer_controller_create_external_stablecoin_transfer POST /api/v0/transfers/external-stablecoin-transfer Create an external stablecoin transfer
TransfersApi transfer_controller_create_stablecoin_conversion POST /api/v0/transfers/stablecoin-conversion Create a stablecoin conversion
WalletsApi wallet_controller_get_wallets GET /api/v0/wallets Get wallets for an app
WebhooksApi webhook_controller_create POST /api/v0/webhooks Create a new webhook
WebhooksApi webhook_controller_find_all GET /api/v0/webhooks Get all webhooks
WebhooksApi webhook_controller_find_one GET /api/v0/webhooks/{id} Get a webhook by id
WebhooksApi webhook_controller_remove DELETE /api/v0/webhooks/{id} Delete a webhook
WebhooksApi webhook_controller_update PATCH /api/v0/webhooks/{id} Update a webhook

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

x-client-key

  • Type: API key
  • API key parameter name: x-client-key
  • Location: HTTP header

x-client-secret

  • Type: API key
  • API key parameter name: x-client-secret
  • Location: HTTP header

idempotency-key

  • Type: API key
  • API key parameter name: idempotency-key
  • Location: HTTP header

Author

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

devdraft-1.0.0.tar.gz (80.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

devdraft-1.0.0-py3-none-any.whl (129.4 kB view details)

Uploaded Python 3

File details

Details for the file devdraft-1.0.0.tar.gz.

File metadata

  • Download URL: devdraft-1.0.0.tar.gz
  • Upload date:
  • Size: 80.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.5

File hashes

Hashes for devdraft-1.0.0.tar.gz
Algorithm Hash digest
SHA256 b18edb7251e028bc42946df681273c9d7e666e23f99f7dbf23adfd069428c323
MD5 489b1f100690a6e71a318c26e4ab1176
BLAKE2b-256 48cb6560a91bde855ded1766ee749cb8c3a664d95adf1dc915b303d0e4595b43

See more details on using hashes here.

File details

Details for the file devdraft-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: devdraft-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 129.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.5

File hashes

Hashes for devdraft-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 68c338d08a1959110ba071a789b4da58cce56eae03f282c9d5dc930eaaeff0c0
MD5 72cfe8d91ae97fb5c98cd1e1b60874df
BLAKE2b-256 c2747e8d2c7548fa8be333f5e4b983a35d3189a6a30c1edb554b7ce4c911b9a9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page