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.9

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.9 * API schema updated, CustomersAPI supports Customer search, new softDelete method in FundingSourcesApi.

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.9.tar.gz (20.7 kB view hashes)

Uploaded Source

Built Distribution

dwollaswagger-1.0.9-py2-none-any.whl (91.1 kB view hashes)

Uploaded Python 2

Supported by

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