Skip to main content

Dwolla API V2 client

Project description

The new Dwolla API V2 SDK, as generated by this fork of swagger-codegen.

Version

1.0.8

Installation

dwollaswagger is available on PyPi, and therefore can be installed automagically via pip.

To install via pip:

pip install dwollaswagger

To add to ``requirements.txt`` and make this a permanent dependency of your package:

YourApp
SomeLibrary==1.2.3
dwollaswagger>=1.0.0
pip install -r requirements.txt

To install directly from source:

git clone https://github.com/Dwolla/dwolla-swagger-python && cd dwolla-swagger-python && python setup.py install

OS X users may need to run ``setup.py`` as a privileged user.

Quickstart

dwollaswagger makes it easy for developers to hit the ground running with our API. Before attempting the following, you should ideally create an application key and secret.

Configuring a client

To get started, all you need to set is the access_token and host values.

dwollaswagger.configuration.access_token = 'token'

# For UAT/Sandbox
client = dwollaswagger.ApiClient('https://api-uat.dwolla.com')

# For Production
client = dwollaswagger.ApiClient('https://api.dwolla.com')

List 10 customers

Now that we’ve set up our client, we can use it to make requests to the API. Let’s retrieve 10 customer records associated with the authorization token used.

dwollaswagger.configuration.access_token = 'token'
client = dwollaswagger.ApiClient('https://api-uat.dwolla.com')

customers_api = dwollaswagger.CustomersApi(client)
my_custies =  customers_api.list(limit=10)

my_custies will be a Python list that consists of Customer objects.

Creating a new customer

To create a customer, we can either provide a dict with the expected values, or a CreateCustomer object.

customers_api = dwollaswagger.CustomersApi(client)

location = customers_api.create(body = {
    'firstName': "Jennifer",
    'lastName': "Smith",
    'email': "jsmith@gmail.com",
    'phone': "7188675309"})

or

customers_api = dwollaswagger.CustomersApi(client)

new_cust = dwollaswagger.CreateCustomer
new_cust.first_name = "Jennifer"
new_cust.last_name = "Smith"
new_cust.email = "jsmith@gmail.com"
new_cust.phone = "7188675309"

location = customers_api.create(body=new_cust)

location will contain a URL to your newly created resource (HTTP 201 / Location header).

Modules

dwolla-python-swagger contains API modules which allow the user to make requests, as well as models which are DAOs that the library uses to serialize responses.

API

Each API module is named in accordance to (Dwolla’s API Spec and encapsulates all of the documented functionality.

  • AccountsApi

  • BusinessclassificationsApi

  • CustomersApi

  • DocumentsApi

  • EventsApi

  • FundingsourcesApi

  • RootApi

  • TransfersApi

  • WebhooksApi

  • WebhooksubscriptionsApi


API objects take an ApiClient argument, which you created here.

Example

doc_api = dwollaswagger.DocumentsApi(your_client_object)

Models

Each model represents the different kinds of requests and responses that can be made with the Dwolla API.

  • AccountInfo

  • Amount

  • ApplicationEvent

  • BaseObject

  • BusinessClassification

  • BusinessClassificationListResponse

  • CreateCustomer

  • CreateFundingSourceRequest

  • CreateWebhook

  • Customer

  • CustomerListResponse

  • Document

  • DocumentListResponse

  • EventListResponse

  • FundingSource

  • FundingSourceListResponse

  • HalLink

  • Money

  • Transfer

  • TransferListResponse

  • TransferRequestBody

  • Unit

  • UpdateCustomer

  • VerificationToken

  • VerifyMicroDepositsRequest

  • Webhook

  • WebhookAttempt

  • WebhookEventListResponse

  • WebhookHeader

  • WebhookHttpRequest

  • WebhookHttpResponse

  • WebhookListResponse

  • WebhookRetry

  • WebhookRetryRequestListResponse

  • WebhookSubscription

README

In order for the library’s README file to display nicely on PyPi, we must use the *.rst file format. When making changes to this README file, please use this tool to convert the *.md file to *.rst, and make sure to keep both files updated.

Changelog

1.0.8 * API schema updated, new MasspaymentsApi and MasspaymentitemsApi. New MassPayment and MassPaymentItem models.

1.0.7 * API schema updated, TransfersApi has new endpoints for cancel a transfer and get a transfer’s fees, new OndemandauthorizationsApi. * Existing MicroDeposits and Documents models updated, new FacilitatorFeeRequest, Authorization, and UpdateTransfer models.

1.0.6 * Patch datetime issue in Models.

1.0.5 * API schema error fixed, FundingSource object now has _embedded key to fix serialization issues.

1.0.4 * API schema updated, CustomersApi has new endpoints for IAV verification. * Existing Customer related models updated, new VerificationToken model. * (release skipped, features in 1.0.5)

1.0.3 * API schema updated, RootApi now added. * Changed auth_token to access_token in compliance with RFC-6749 recommended nomenclature.

1.0.2 * API schema updated, new methods in FundingsourcesApi. * All methods which take Swagger variables in path (e.g, /resource/{id}) can now be passed a resource URL to make it easier for HAL-styled API consumption. * More idiomatic response logic for HTTP 201 responses. * Fix syntax error in README

1.0.1 * API schema updated, new methods in CustomersApi and TransfersApi

1.0.0 * Initial release.

Credits

This wrapper is semantically generated by a fork of swagger-codegen. - swagger-codegen contributors - David Stancu

License

Copyright 2015 Swagger Contributors, David Stancu

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

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

dwollaswagger-1.0.8.tar.gz (20.5 kB view details)

Uploaded Source

Built Distribution

dwollaswagger-1.0.8-py2-none-any.whl (89.8 kB view details)

Uploaded Python 2

File details

Details for the file dwollaswagger-1.0.8.tar.gz.

File metadata

  • Download URL: dwollaswagger-1.0.8.tar.gz
  • Upload date:
  • Size: 20.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for dwollaswagger-1.0.8.tar.gz
Algorithm Hash digest
SHA256 b9d5a06fbe8e097a621cd3dbe383cef8c8053e11388013c6435e1ec198122691
MD5 16dd2bd42675ea68cbbae9d2437146dd
BLAKE2b-256 3cbe6bc24d5005bb6ac600a2c4117e0f4e51eb8e09347319d2b041788de084de

See more details on using hashes here.

File details

Details for the file dwollaswagger-1.0.8-py2-none-any.whl.

File metadata

File hashes

Hashes for dwollaswagger-1.0.8-py2-none-any.whl
Algorithm Hash digest
SHA256 e4ff998666de97048202898861abf053d7d18ece80dc8f75f4607bfb1a90e23d
MD5 bf1545ae6cc8a9ef28f0f13a78799a27
BLAKE2b-256 74dbcf29330cf046a742f5549edd29bf7b64fa283bfdb559dbd724284b4f5e91

See more details on using hashes here.

Supported by

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