Class CreateCustomerResponse
Contains the results from CreateCustomerRequest
Properties
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| RequestId | string | Unique identifier used to identify the request associated with the response. |
| Result | ResponseResultType | Value indicating type of result. Possible values: Error (default), Success, ValidationError, NoChange |
| ResultCode | string | Can be Error or Resource code depending on type of result. |
| ResultMessage | string | Message regarding details of the Result. |
| ValidationResults | ValidationResult[] | Array of ValidationResult objects containing messages regarding input validation. |
| Credentials | TokenCredentials | Credentials for subsequent web service requests. |
| Customer | Customer | The customer that was created |
Customer
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| AddressLine1 | string | Customers Address |
| AddressLine2 | string | Customers additional Address information |
| City | string | Customers City |
| Country | string | Customers Country |
| CustomerData1 | string | Customers Customer Data 1 |
| CustomerData2 | string | Customers Customer Data 2 |
| CustomerData3 | string | Customers Customer Data 3 |
| CustomerReference | string | A unique value assigned to each customer used for Associating a Customer to a deposit. |
| CustomerType | enum | An enumeration identifying the type of customer. Possible values are: 0 or 1. See CustomerType data table for details. |
| DaytimePhone | string | Customers Daytime Phone |
| DaytimePhoneExt | string | Customers Daytime Phone Extension |
| DLNumber | string | Last 4 digits of Customer's Driver's License Number |
| DLState | string | Customer's Driver's License State |
| EmailAddress | string | Customers Email Address |
| EveningPhone | string | Customers Evening Phone |
| EveningPhoneExt | string | Customers Evening Phone Extension |
| Fax | string | Customers Fax |
| FirstName | string | Customers First Name |
| HomeBankingId | string | A reference value to the FI's Id |
| IsCompany | bool | Indicates whether the customer is an individual or a business. |
| LastName | string | Customers Last Name |
| LocationReference | string | A unique value assigned to each location. |
| PostalCode | string | Customers Zip Code |
| Relationship | enum | An enumeration identifying the type of customer relationship. Possible values are: 1 or 2. See RelationshipType data table for details. |
| SSNFedTaxId | string | Last 4 digits of Customer's SSN or Federal Tax Id |
| State | string | Customers State |
Examples
{
"RequestId": "your RequestId here",
"Result": 1,
"ResultCode": null,
"ResultMessage": null,
"ValidationResults": [],
"Credentials": {
"PhoneKey": "your PhoneKey here",
"SecurityToken": "your SecurityToken here"
},
"Customer":
{
"AddressLine1": "123 Easy St",
"AddressLine2": "Ste 100",
"City": "Allen",
"Country": "United States",
"CustomerData1": null,
"CustomerData2": null,
"CustomerData3": null,
"CustomerReference": "Example CustomerReference",
"CustomerType": 0,
"DLNumber": null,
"DLState": null,
"DaytimePhone": null,
"DaytimePhoneExt": null,
"EmailAddress": null,
"EveningPhone": null,
"EveningPhoneExt": null,
"Fax": null,
"FirstName": "Joe",
"HomeBankingId": "Example HomeBankingId",
"IsCompany": false,
"LastName": "Tester",
"LocationReference": "Example LocationReference",
"PostalCode": "11111",
"Relationship": 1,
"SSNFedTaxId": null,
"State": "TX"
}
}
Methods
Exception(string)
Declaration
public void Exception(string message)
Parameters
| TYPE | NAME | DESCRIPTION |
|---|---|---|
| System.String | message |
NullRequestResonse()
Declaration
public static Response NullRequestResonse()
Return Value
| TYPE | DESCRIPTION |
|---|---|
| Response |
Success()
Declaration
public void Success()
Success(String)
Declaration
public void Success(string resultMessage)
Parameters
| TYPE | NAME | DESCRIPTION |
|---|---|---|
| System.String | resultMessage |