Update a customer - Retry verification - personal customer
POST https://api-sandbox.dwolla.com/customers/{{customerId}}
To retry verification for personal Customer you’ll need to provide the Customer’s full name, email address, home address, date of birth, and the last four digits of their Social Security Number. Once you submit this request, Dwolla will perform some initial validation to check for formatting issues such as an invalid date of birth, invalid email format, etc. If successful, the response will be a HTTP 201/Created with the URL of the new Customer resource contained in the Location header.
Resources
Article - Customer verification
Article - Handling verification statuses
Article - Account Types
Request parameters
Parameter | Data Type | Parameter Type | Required | Description |
---|---|---|---|---|
firstName | string | body | yes | Customer’s first name. |
lastName | string | body | yes | Customer’s last name. |
string | body | yes | Customer’s email address. | |
ipAddress | string | body | no | Customer’s IP address. |
type | string | body | yes | Either personal or business. |
address1 | string | body | yes | First line of the address. |
address2 | string | body | no | Second line of the street address. |
city | string | body | yes | City of Customer’s permanent residence. |
state | string | body | yes | Two letter abbreviation of the state. |
postalCode | string | body | yes | Postal code. |
dateOfBirth | string | body | yes | Customer's date of birth in YYYY-MM-DD format. |
ssn | string | body | yes | Full nine digits of Social Security Number. |
phone | string | body | no | Customer's 10 digit phone number. No hyphens or other separators, e.g. 3334447777. |
Request Body
{"firstName"=>"John", "lastName"=>"Doe", "email"=>"johndoe@nomail.net", "ipAddress"=>"10.10.10.10", "type"=>"personal", "address1"=>"99-99 Correction St", "city"=>"Some City", "state"=>"NY", "postalCode"=>"11101", "dateOfBirth"=>"1970-01-01", "ssn"=>"123456789"}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string | ||
Content-Type | string | ||
Authorization | string |