Autogenerated PHP SDK client for API V2
This repository contains the source code for Dwolla’s PHP-based SDK as generated by this fork of swagger-codegen, which allows developers to interact with Dwolla’s server-side API via a PHP API. Any action that can be performed via an HTTP request can be made using this SDK when executed within a server-side environment.
Note:
Temporary PHP 7.4 support was added using these replacements:
\$this\->([a-z0-9\_]+) = \$data\["([a-z0-9\_]+)"\]\;
into \$this->$1 = \$data\["$2"\] ?? null;
Additionally, temporary PHP 8.1 support was added using these replacements:
([^\n]*public function (offsetExists|offsetGet|offsetSet|offsetUnset))
into #\[\\ReturnTypeWillChange\]\n$1
To begin using this SDK, you will first need to download it to your machine. We use Packagist to distribute this package, which allows it to be downloaded via Composer.
$ composer require dwolla/dwollaswagger
$ composer install
To use, just require
your Composer autoload.php
file.
require("../path/to/vendor/autoload.php");
Before any API requests can be made, you must first determine which environment you will be using, as well as fetch the application key and secret. To fetch your application key and secret, please visit one of the following links:
Finally, you can create an instance of ApiClient
after configuring the username
and password
values as the application key and secret that you fetched from one of the aforementioned links, respectively.
DwollaSwagger\Configuration::$username = "API_KEY";
DwollaSwagger\Configuration::$password = "API_SECRET";
# For Sandbox
$apiClient = new DwollaSwagger\ApiClient("https://api-sandbox.dwolla.com");
# For Production
$apiClient = new DwollaSwagger\ApiClient("https://api.dwolla.com");
Application access tokens are used to authenticate against the API on behalf of an application. Application tokens can be used to access resources in the API that either belong to the application itself (webhooks
, events
, webhook-subscriptions
) or the Dwolla Account that owns the application (accounts
, customers
, funding-sources
, etc.). Application tokens are obtained by using the client_credentials
OAuth grant type:
$tokensApi = new DwollaSwagger\TokensApi($apiClient);
$appToken = $tokensApi->token();
Application access tokens are short-lived: 1 hour. They do not include a refresh_token
. When it expires, generate a new one using $tokensApi->token()
.
The Dwolla client provides high-level methods for interacting with the Dwolla API.
High-level methods make development easier by embedding information you would typically refer to Dwolla’s API reference for in the SDK itself, such as endpoints, request arguments, and response deserialization. DwollaSwagger
contains the API
module, which allows the user to make requests, as well as models
, which are data access objects that the library uses to deserialize responses.
Each model represents the different kinds of requests and responses that can be made with the Dwolla API. View the full list in the models
directory.
The following API modules are available:
You can pass custom headers in your requests as per the schema of the API models. Here is an example of creating a Customer with an Idempotency-Key header.
$customersApi = new DwollaSwagger\CustomersApi($apiClient);
$customer = $customersApi->create([
"firstName" => "Jane",
"lastName" => "Merchant",
"email" => "jmerchant@nomail.net",
"type" => "receive-only",
"businessName" => "Jane Corp llc",
"ipAddress" => "99.99.99.99"
], [
"Idempotency-Key" => "51a62-3403-11e6-ac61-9e71128cae77"
]);
$customer; # => "https://api-sandbox.dwolla.com/customers/fc451a7a-ae30-4404-aB95-e3553fcd733f"
# Retrieve an Account by ID
$accountsApi = new DwollaSwagger\AccountsApi($apiClient);
$account = $accountsApi->id("8a2cdc8d-629d-4a24-98ac-40b735229fe2");
# Retrieve a Customer by ID
$customerUrl = 'https://api-sandbox.dwolla.com/customers/07d59716-ef22-4fe6-98e8-f3190233dfb8';
$customersApi = new DwollaSwagger\CustomersApi($apiClient);
$customer = $customersApi->getCustomer($customerUrl);
# Create a customer funding source
$customerUrl = "https://api-sandbox.dwolla.com/customers/AB443D36-3757-44C1-A1B4-29727FB3111C";
$fsApi = new DwollaSwagger\FundingsourcesApi($apiClient);
$fundingSource = $fsApi->createCustomerFundingSource([
"routingNumber" => "222222226",
"accountNumber" => "123456789",
"bankAccountType" => "checking",
"name" => "Jane Doe’s Checking"
], $customerUrl);
$fundingSource; # => "https://api-sandbox.dwolla.com/funding-sources/375c6781-2a17-476c-84f7-db7d2f6ffb31"
You can wrap your requests in a try/catch block to handle errors.
try{
$new_customer = $customersApi->create([
//request_body
]);
} catch (Exception $e) {
echo 'Caught exception: ', $e->getResponseBody(), "\n";
}
plaidToken
for a customer.getCustomerCardToken
method added to CustomersAPI
for creating a card funding sources token for a customer.TokenApi
adding support for application access token and client token requests.CustomersApi
updated to add support for email
parameter on list customers.KbaApi
. See GitHub Releases for more information.LabelsApi
, LabelreallocationsApi
, and LedgerentriesApi
.CustomersApi
to update support beneficial owners. Update existing models.CustomersApi
to allow for null limit
, offset
, and search
.removed
funding source query params; and more.FundingSourcesApi
. Fix transfer failure deserialization in transfer model.CustomersAPI
supports Customer search, new softDelete method in FundingSourcesApi
.TransfersApi
to include cancel and getting transfer fees. Added some new models and updated some existing models.FundingSource
object now has _embedded
key to fix serialization issues. Avoid using reserved PHP function names. CustomersApi
gets endpoint for IAV verification. Added VerificationToken
model.RootApi
. Changed auth_token
to access_token
in compliance with RFC-6749 nomenclature.FundingsourcesApi
. More idiomatic response logic for HTTP 201 responses.CustomersApi
and TransfersApi
To learn more about Dwolla and how to integrate our product with your application, please consider visiting the following resources and becoming a member of our community!
This wrapper is semantically generated by a fork of swagger-codegen.