Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/dwolla-customers-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: Dwolla Customers API
version: '2.0'
contact:
name: Dwolla Developer Relations Team
url: https://developers.dwolla.com
email: api@dwolla.com
license:
name: MIT
url: https://github.com/Dwolla/dwolla-openapi/blob/master/LICENSE
termsOfService: https://www.dwolla.com/legal/tos/
description: 'Operations tagged customers across 2 of this provider''s published API definitions: dwolla-customers-openapi.yml, dwolla-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.dwolla.com
description: Production server
- url: https://api-sandbox.dwolla.com
description: Sandbox server
security:
- clientCredentials: []
tags:
- name: customers
description: Operations related to Customers
paths:
/customers:
get:
tags:
- customers
summary: List and search customers
description: Returns a paginated list of customers sorted by creation date. Supports fuzzy search across customer names, business names, and email addresses, plus exact filtering by email and verification status. Default limit is 25 customers per page, maximum 200.
operationId: listAndSearchCustomers
x-speakeasy-name-override: list
parameters:
- name: limit
in: query
description: How many results to return
required: false
schema:
type: integer
- name: offset
in: query
description: How many results to skip
required: false
schema:
type: integer
- name: search
in: query
description: Searches on certain fields
required: false
schema:
type: string
- name: status
in: query
description: Filter by customer status
required: false
schema:
type: string
- $ref: '#/components/parameters/Accept'
responses:
'200':
description: successful operation
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
$ref: '#/components/schemas/Customers'
'403':
description: Forbidden
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
$ref: '#/components/schemas/ForbiddenError'
post:
tags:
- customers
summary: Create a customer
description: Creates a new customer with different verification levels and capabilities. Supports personal verified customers (individuals), business verified customers (businesses), unverified customers, and receive-only users. Customer type determines transaction limits, verification requirements, and available features.
operationId: createCustomer
x-speakeasy-name-override: create
parameters:
- $ref: '#/components/parameters/Accept'
requestBody:
required: true
description: Parameters for customer to be created
content:
application/vnd.dwolla.v1.hal+json:
schema:
oneOf:
- $ref: '#/components/schemas/CreateReceiveOnlyUser'
- $ref: '#/components/schemas/CreateUnverifiedCustomer'
- $ref: '#/components/schemas/CreateVerifiedPersonalCustomer'
- $ref: '#/components/schemas/CreateVerifiedSolePropCustomer'
- $ref: '#/components/schemas/CreateVerifiedBusinessCustomerWithController'
- $ref: '#/components/schemas/CreateVerifiedBusinessCustomerWithInternationalController'
responses:
'201':
description: successful operation
headers:
Location:
$ref: '#/components/headers/Location'
'400':
description: Bad Request
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
$ref: '#/components/schemas/BadRequestError'
'403':
description: forbidden
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
type: object
properties:
code:
type: string
example: forbidden
message:
type: string
example: Not authorized to create customers.
'404':
description: not found
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
type: object
properties:
code:
type: string
example: notFound
message:
type: string
example: not found.
servers:
- url: https://api.dwolla.com
description: Production server
- url: https://api-sandbox.dwolla.com
description: Sandbox server
/customers/{id}:
get:
tags:
- customers
summary: Retrieve a customer
description: Retrieve identifying information for a specific customer. The returned data varies by customer type - verified customers include contact details, address information, and verification status, while unverified customers and receive-only users contain basic contact information only.
operationId: getCustomer
x-speakeasy-name-override: get
x-codeSamples:
- lang: bash
source: 'GET https://api-sandbox.dwolla.com/customers/FC451A7A-AE30-4404-AB95-E3553FCD733F
Accept: application/vnd.dwolla.v1.hal+json
Authorization: Bearer pBA9fVDBEyYZCEsLf/wKehyh1RTpzjUj5KzIRfDi0wKTii7DqY
'
- lang: javascript
source: "// Using dwolla-v2 - https://github.com/Dwolla/dwolla-v2-node\ndwolla\n .get(\"customers/FC451A7A-AE30-4404-AB95-E3553FCD733F\")\n .then((res) => res.body);\n"
- lang: python
source: '# Using dwollav2 - https://github.com/Dwolla/dwolla-v2-python
customer = app_token.get(''customers/FC451A7A-AE30-4404-AB95-E3553FCD733F'')
customer.body
'
- lang: php
source: '<?php
// Using dwollaswagger - https://github.com/Dwolla/dwolla-swagger-php
$customersApi = new DwollaSwagger\CustomersApi($apiClient);
$customer = $customersApi->getCustomer("FC451A7A-AE30-4404-AB95-E3553FCD733F");
?>
'
- lang: ruby
source: '# Using dwolla_v2 - https://github.com/Dwolla/dwolla-v2-ruby
customer = app_token.get "customers/FC451A7A-AE30-4404-AB95-E3553FCD733F"
'
parameters:
- name: id
in: path
description: Customer unique identifier
required: true
schema:
type: string
- $ref: '#/components/parameters/Accept'
responses:
'200':
description: successful operation
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
oneOf:
- $ref: '#/components/schemas/UnverifiedCustomer'
- $ref: '#/components/schemas/ReceiveOnlyCustomer'
- $ref: '#/components/schemas/VerifiedPersonalCustomer'
- $ref: '#/components/schemas/VerifiedSolePropCustomer'
- $ref: '#/components/schemas/VerifiedBusinessCustomer'
'403':
description: forbidden
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
type: object
properties:
code:
type: string
example: forbidden
message:
type: string
example: Not authorized to get a customer by id.
'404':
description: not found
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
type: object
properties:
code:
type: string
example: notFound
message:
type: string
example: Customer not found.
post:
tags:
- customers
summary: Update a customer
description: Update Customer information, upgrade an unverified Customer to a verified Customer, suspend a Customer, deactivate a Customer, reactivate a Customer, and update a verified Customer's information to retry verification.
operationId: update
x-codeSamples:
- lang: bash
source: "POST https://api-sandbox.dwolla.com/customers/FC451A7A-AE30-4404-AB95-E3553FCD733F\nContent-Type: application/json\nAccept: application/vnd.dwolla.v1.hal+json\nAuthorization: Bearer pBA9fVDBEyYZCEsLf/wKehyh1RTpzjUj5KzIRfDi0wKTii7DqY\n\n{\n \"firstName\": \"John\",\n \"lastName\": \"Doe\",\n \"email\": \"johndoe@example.com\"\n}\n"
- lang: javascript
source: "// Using dwolla-v2 - https://github.com/Dwolla/dwolla-v2-node\ndwolla\n .post(\"customers/FC451A7A-AE30-4404-AB95-E3553FCD733F\", {\n firstName: \"John\",\n lastName: \"Doe\",\n email: \"johndoe@example.com\"\n })\n .then((res) => res.body);\n"
- lang: python
source: "# Using dwollav2 - https://github.com/Dwolla/dwolla-v2-python\ncustomer = app_token.post('customers/FC451A7A-AE30-4404-AB95-E3553FCD733F', {\n 'firstName': 'John',\n 'lastName': 'Doe',\n 'email': 'johndoe@example.com'\n})\ncustomer.body\n"
- lang: php
source: "<?php\n// Using dwollaswagger - https://github.com/Dwolla/dwolla-swagger-php\n$customersApi = new DwollaSwagger\\CustomersApi($apiClient);\n$customer = $customersApi->updateCustomer(\"FC451A7A-AE30-4404-AB95-E3553FCD733F\", [\n 'firstName' => 'John',\n 'lastName' => 'Doe',\n 'email' => 'johndoe@example.com'\n]);\n?>\n"
- lang: ruby
source: "# Using dwolla_v2 - https://github.com/Dwolla/dwolla-v2-ruby\ncustomer = app_token.post \"customers/FC451A7A-AE30-4404-AB95-E3553FCD733F\", {\n firstName: \"John\",\n lastName: \"Doe\",\n email: \"johndoe@example.com\"\n}\n"
parameters:
- name: id
in: path
description: Customer unique identifier
required: true
schema:
type: string
- $ref: '#/components/parameters/Accept'
requestBody:
required: true
description: Parameters for updating a Customer
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/DeactivateCustomer'
- $ref: '#/components/schemas/ReactivateCustomer'
- $ref: '#/components/schemas/SuspendCustomer'
- $ref: '#/components/schemas/UpdateUnverifiedAndReceiveOnly'
- $ref: '#/components/schemas/UpdateVerifiedPersonal'
- $ref: '#/components/schemas/UpdateVerifiedBusiness'
- $ref: '#/components/schemas/UpgradeToUnverified'
- $ref: '#/components/schemas/UpgradeToVerifiedPersonal'
- $ref: '#/components/schemas/UpgradeToVerifiedBusiness'
- $ref: '#/components/schemas/UpgradeToVerifiedSoleProp'
- $ref: '#/components/schemas/RetryVerifiedPersonal'
- $ref: '#/components/schemas/RetryVerifiedBusinessNoController'
- $ref: '#/components/schemas/RetryVerifiedBusinessWithController'
- $ref: '#/components/schemas/RetryVerifiedBusinessWithInternationalController'
- $ref: '#/components/schemas/RetryVerifiedSoleProp'
responses:
'200':
description: successful operation
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
oneOf:
- $ref: '#/components/schemas/UnverifiedCustomer'
- $ref: '#/components/schemas/ReceiveOnlyCustomer'
- $ref: '#/components/schemas/VerifiedPersonalCustomer'
- $ref: '#/components/schemas/VerifiedSolePropCustomer'
- $ref: '#/components/schemas/VerifiedBusinessCustomer'
'400':
description: bad request
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
type: object
properties:
code:
type: string
example: badRequest
message:
type: string
example: Duplicate customer or validation error.
'403':
description: forbidden
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
type: object
properties:
code:
type: string
example: forbidden
message:
type: string
example: Not authorized to update a customer.
servers:
- url: https://api.dwolla.com
description: Production server
- url: https://api-sandbox.dwolla.com
description: Sandbox server
/business-classifications:
get:
tags:
- customers
summary: List business classifications
description: Returns a directory of business and industry classifications required for creating business verified customers. Each business classification contains multiple industry classifications. The industry classification ID must be provided in the businessClassification parameter during business customer creation for verification.
operationId: listBusinessClassifications
x-speakeasy-group: businessClassifications
x-speakeasy-name-override: list
x-codeSamples:
- lang: bash
source: 'GET https://api-sandbox.dwolla.com/business-classifications
Accept: application/vnd.dwolla.v1.hal+json
Authorization: Bearer pBA9fVDBEyYZCEsLf/wKehyh1RTpzjUj5KzIRfDi0wKTii7DqY
'
- lang: javascript
source: "// Using dwolla-v2 - https://github.com/Dwolla/dwolla-v2-node\ndwolla\n .get(\"business-classifications\")\n .then((res) => res.body._embedded[\"business-classifications\"][0].name); // => 'Accommodation and Food Services'\n"
- lang: python
source: '# Using dwollav2 - https://github.com/Dwolla/dwolla-v2-python
classifications = app_token.get(''business-classifications'')
classifications.body[''_embedded''][''business-classifications''][0][''name''] # => ''Accommodation and Food Services''
'
- lang: php
source: '<?php
// Using dwollaswagger - https://github.com/Dwolla/dwolla-swagger-php
$businessClassificationsApi = new DwollaSwagger\BusinessClassificationsApi($apiClient);
$classifications = $businessClassificationsApi->_list();
$classifications->_embedded->{''business-classifications''}[0]->name; # => "Accommodation and Food Services"
?>
'
- lang: ruby
source: '# Using dwolla_v2 - https://github.com/Dwolla/dwolla-v2-ruby
classifications = app_token.get "business-classifications"
classifications._embedded.[''business-classifications''][0].name # => "Accommodation and Food Services"
'
parameters:
- $ref: '#/components/parameters/Accept'
responses:
'200':
description: successful operation
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
$ref: '#/components/schemas/BusinessClassifications'
'403':
description: Forbidden
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
$ref: '#/components/schemas/ForbiddenError'
'404':
description: Not Found
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
$ref: '#/components/schemas/NotFoundError'
servers:
- url: https://api.dwolla.com
description: Production server
- url: https://api-sandbox.dwolla.com
description: Sandbox server
/business-classifications/{id}:
get:
tags:
- customers
summary: Retrieve a business classification
description: Returns a specific business classification with its embedded industry classifications. Use this endpoint to browse available industry options within a business category and obtain the industry classification ID required for the businessClassification parameter when creating business verified customers.
operationId: retrieveBusinessClassification
x-speakeasy-group: businessClassifications
x-speakeasy-name-override: get
x-codeSamples:
- lang: bash
source: 'GET https://api-sandbox.dwolla.com/business-classifications/9ed3f670-7d6f-11e3-b1ce-5404a6144203
Accept: application/vnd.dwolla.v1.hal+json
Authorization: Bearer pBA9fVDBEyYZCEsLf/wKehyh1RTpzjUj5KzIRfDi0wKTii7DqY
'
- lang: javascript
source: "// Using dwolla-v2 - https://github.com/Dwolla/dwolla-v2-node\ndwolla\n .get(\"business-classifications/9ed3f670-7d6f-11e3-b1ce-5404a6144203\")\n .then((res) => res.body.name); // => 'Accommodation and Food Services'\n"
- lang: python
source: '# Using dwollav2 - https://github.com/Dwolla/dwolla-v2-python
classification = app_token.get(''business-classifications/9ed3f670-7d6f-11e3-b1ce-5404a6144203'')
classification.body[''name''] # => ''Accommodation and Food Services''
'
- lang: php
source: '<?php
// Using dwollaswagger - https://github.com/Dwolla/dwolla-swagger-php
$businessClassificationsApi = new DwollaSwagger\BusinessClassificationsApi($apiClient);
$classification = $businessClassificationsApi->getBusinessClassification("9ed3f670-7d6f-11e3-b1ce-5404a6144203");
$classification->name; # => "Accommodation and Food Services"
?>
'
- lang: ruby
source: '# Using dwolla_v2 - https://github.com/Dwolla/dwolla-v2-ruby
classification = app_token.get "business-classifications/9ed3f670-7d6f-11e3-b1ce-5404a6144203"
classification.name # => "Accommodation and Food Services"
'
parameters:
- name: id
in: path
description: business classification unique identifier
required: true
schema:
type: string
- $ref: '#/components/parameters/Accept'
responses:
'200':
description: successful operation
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
$ref: '#/components/schemas/BusinessClassification'
'404':
description: not found
headers: {}
content:
application/vnd.dwolla.v1.hal+json:
schema:
type: object
properties:
code:
type: string
example: not_found
message:
type: string
example: not found.
servers:
- url: https://api.dwolla.com
description: Production server
- url: https://api-sandbox.dwolla.com
description: Sandbox server
components:
schemas:
UpgradeToUnverified:
title: UpgradeToUnverified
description: Upgrade Receive Only User to Unverified Customer
type: object
required:
- type
properties:
type:
type: string
example: unverified
DeactivateCustomer:
title: DeactivateCustomer
description: Deactivate a Customer
type: object
required:
- status
properties:
status:
type: string
example: deactivated
SuspendCustomer:
title: SuspendCustomer
description: Suspend a Customer
type: object
required:
- status
properties:
status:
type: string
example: suspended
BusinessClassification:
title: BusinessClassification
type: object
properties:
_links:
type: object
properties:
self:
$ref: '#/components/schemas/HalLink'
_embedded:
type: object
properties:
industry-classifications:
type: array
items:
type: object
properties:
id:
type: string
example: 9ed3f66b-7d6f-11e3-95ac-5404a6144203
name:
type: string
example: Wineries
id:
type: string
example: 9ed3f669-7d6f-11e3-b545-5404a6144203
name:
type: string
example: Food retail and service
VerifiedSolePropCustomer:
title: VerifiedSolePropCustomer
description: Verified sole proprietorship customer - distinguished from VerifiedBusinessCustomer by businessType=soleProprietorship
allOf:
- $ref: '#/components/schemas/BaseCustomer'
- type: object
required:
- type
- status
- address1
- city
- state
- postalCode
- businessName
- businessType
- businessClassification
properties:
type:
type: string
enum:
- business
example: business
status:
type: string
enum:
- verified
- suspended
- deactivated
- document
- retry
example: verified
address1:
type: string
example: 123 Main Street
address2:
type: string
example: Ste 123
city:
type: string
example: Des Moines
state:
type: string
example: IA
postalCode:
type: string
example: '50309'
businessName:
type: string
example: Jane Corp
businessType:
type: string
enum:
- soleProprietorship
example: soleProprietorship
businessClassification:
type: string
example: 9ed3f670-7d6f-11e3-b1ce-5404a6144203
RetryVerifiedBusinessNoController:
title: RetryVerifiedBusinessNoController
description: Retry Verification for Verified Business Customer where only Business Details need to be retried
type: object
required:
- firstName
- lastName
- email
- type
- address1
- city
- state
- postalCode
- businessClassification
- businessType
- businessName
- ein
properties:
firstName:
type: string
example: Account
lastName:
type: string
example: Admin
email:
type: string
example: accountAdmin@email.com
ipAddress:
type: string
example: 143.156.7.8
type:
type: string
example: business
address1:
type: string
example: 99-99 33rd St
city:
type: string
example: Some City
state:
type: string
example: NY
postalCode:
type: string
example: '11101'
businessClassification:
type: string
example: 9ed3f670-7d6f-11e3-b1ce-5404a6144203
businessType:
type: string
example: llc
businessName:
type: string
example: Jane Corp
ein:
type: string
example: 00-0000000
BaseCustomer:
title: BaseCustomer
description: Base schema containing common fields for all customer types
type: object
required:
- _links
- id
- firstName
- lastName
- email
- created
properties:
_links:
additionalProperties:
$ref: '#/components/schemas/HalLink'
id:
type: string
example: c41125c5-99c4-4303-a9f6-d066d28a61e3
firstName:
type: string
example: Jane
lastName:
type: string
example: Doe
email:
type: string
example: janedoe@mail.com
correlationId:
type: string
example: CID-abe2bb3d-d2ff-433b-95a3-0debd960ed25
created:
type: string
format: date-time
example: '2022-10-07T16:46:13.023Z'
UpdateVerifiedPersonal:
title: UpdateVerifiedPersonal
description: Update Verified Personal Customer Information
type: object
properties:
email:
type: string
example: accountAdmin@email.com
ipAddress:
type: string
example: 143.156.7.8
address1:
type: string
example: 123 Main Street
address2:
type: string
example: XYZ Suite
city:
type: string
example: Des Moines
state:
type: string
example: IA
postalCode:
type: string
example: '50309'
phone:
type: string
example: '5555555555'
UpgradeToVerifiedPersonal:
title: UpgradeToVerifiedPersonal
description: Upgrade Unverified Customer to Verified Personal Customer
type: object
required:
- firstName
- lastName
- email
- address1
- city
- state
- postalCode
- dateOfBirth
- type
- ssn
properties:
firstName:
type: string
example: John
lastName:
type: string
example: Doe
email:
type: string
example: johndoe@email.net
ipAddress:
type: string
example: 10.10.10.10
type:
type: string
example: personal
address1:
type: string
example: 99-99 33rd St
city:
type: string
example: Some City
state:
type: string
example: NY
postalCode:
type: string
example: '11101'
dateOfBirth:
type: string
example: '1970-01-01'
ssn:
type: string
example: '1234'
Passport:
title: Passport
type: object
required:
- number
- country
properties:
number:
type: string
country:
type: string
ReactivateCustomer:
title: ReactivateCustomer
description: Reactivate a Customer
type: object
required:
- status
properties:
status:
type: string
example: reactivated
UpgradeToVerifiedBusiness:
title: UpgradeToVerifiedBusiness
description: Upgrade Unverified Customer to Verified Business Customer
type: object
required:
- firstName
- lastName
- email
- type
- address1
- city
- state
- postalCode
- controller
- businessClassification
- businessType
- businessName
- ein
properties:
firstName:
type: string
example: Account
lastName:
type: string
example: Admin
email:
type: string
example: accountAdmin@email.com
ipAddress:
type: string
example: 143.156.7.8
type:
type: string
example: business
address1:
type: string
example: 99-99 33rd St
city:
type: string
example: Some City
state:
type: string
example: NY
postalCode:
type: string
example: '11101'
controller:
type: object
required:
- firstName
- lastName
- title
- dateOfBirth
- address
properties:
firstName:
type: string
example: John
lastName:
type: string
example: Controller
title:
type: string
example: CEO
ssn:
type: string
example: '6789'
dateOfBirth:
type: string
example: '1980-01-31'
address:
type: object
required:
- address1
- city
- stateProvinceRegion
- postalCode
- country
properties:
address1:
type: string
example: 1749 18th st
address2:
type: string
example: apt 12
city:
type: string
example: Des Moines
stateProvinceRegion:
type: string
example: IA
postalCode:
type: string
example: '50266'
country:
type: string
example: US
businessClassification:
type: string
example: 9ed3f670-7d6f-11e3-b1ce-5404a6144203
businessType:
type: string
example: llc
businessName:
type: string
example: Jane Corp
ein:
type: string
example: 00-0000000
CreateVerifiedBusinessCustomerWithController:
title: CreateVerifiedBusinessCustomerWithController
description: Create a Verified Business customer with a US controller
type: object
required:
- firstName
- lastName
- email
- address1
- city
- state
- postalCode
- type
- businessType
- controller
- businessName
- businessClassification
- ein
properties:
firstName:
type: string
example: Jane
lastName:
type: string
example: Business
email:
type: string
example: jane.business@email.com
ipAddress:
type: string
example: 143.156.7.8
phone:
type: string
example: '5555555555'
correlationId:
type: string
example: fc451a7a-ae30-4404-aB95-e3553fcd733
type:
type: string
const: business
address1:
type: string
example: 99-99 33rd St
address2:
type: string
example: 99-99 33rd St
city:
type: string
example: Some City
state:
type: string
example: NY
postalCode:
type: string
example: '11101'
businessClassification:
type: string
example: 9ed3f670-7d6f-11e3-b1ce-5404a6144203
businessName:
type: string
example: Jane Corp
doingBusinessAs:
type: string
example: Jane's Electronics
ein:
type: string
example: 00-0000000
website:
type: string
example: https://www.domain.com
controller:
type: object
required:
- firstName
- lastName
- title
- dateOfBirth
- address
- ssn
properties:
firstName:
type: string
example: John
lastName:
type: string
example: Controller
title:
type: string
example: CEO
dateOfBirth:
type: string
example: '1980-01-31'
address:
$ref: '#/components/schemas/InternationalAddress'
ssn:
type: string
example: '1234'
businessType:
type: string
enum:
- llc
- corporation
- partnership
example: llc
InternationalAddress:
title: InternationalAddress
type: object
required:
- address1
# --- truncated at 32 KB (59 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/dwolla/refs/heads/main/openapi/dwolla-customers-api-openapi.yml