GET
/
customers
List and search customers
curl --request GET \
  --url https://api.dwolla.com/customers \
  --header 'Accept: <accept>' \
  --header 'Authorization: Bearer <token>'
{
  "_links": {},
  "_embedded": {
    "customers": [
      {
        "_links": {},
        "id": "c41125c5-99c4-4303-a9f6-d066d28a61e3",
        "firstName": "Jane",
        "lastName": "Doe",
        "email": "janedoe@mail.com",
        "type": "unverified",
        "status": "unverified",
        "correlationId": "CID-abe2bb3d-d2ff-433b-95a3-0debd960ed25",
        "created": "2022-10-07T16:46:13.023Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

Accept
enum<string>
default:application/vnd.dwolla.v1.hal+json
required

The media type of the response. Must be application/vnd.dwolla.v1.hal+json

Available options:
application/vnd.dwolla.v1.hal+json

Query Parameters

limit
integer

How many results to return

offset
integer

How many results to skip

Searches on certain fields

status
string

Filter by customer status

Response

200
application/vnd.dwolla.v1.hal+json

successful operation

The response is of type object.