Class UpdateCustomerResponse
Contains the results from UpdateCustomerRequest
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. |
| UpdatedCustomer | Customer | The customer that was updated |
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 | CustomerType | An enumeration identifying the type of customer. Possible values are: Individual or Business. |
| 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 | RelationshipType | An enumeration identifying the type of customer relationship. Possible values are: Customer or Vendor. |
| SSNFedTaxId | string | Last 4 digits of Customer's SSN or Federal Tax Id |
| State | string | Customers State |
Examples
{
"__type":"UpdateCustomerResponse:#JackHenry.Eps.Mobile.RDC",
"UpdatedCustomer":
{
"__type":"Customer:#JackHenry.Eps.Mobile.RDC",
"HomeBankingId":"String Content",
"FirstName":"String Content",
"LastName":"String Content",
"AddressLine1":"String Content",
"AddressLine2":"String Content",
"City":"String Content",
"State":"String Content",
"PostalCode":"String Content",
"Country":"String Content",
"EmailAddress":"String Content",
"CustomerReference":"String Content",
"DaytimePhone":"String Content",
"DaytimePhoneExt":"String Content",
"EveningPhone":"String Content",
"EveningPhoneExt":"String Content",
"SSNFedTaxId":"String Content",
"Fax":"String Content",
"CustomerData1":"String Content",
"CustomerData2":"String Content",
"CustomerData3":"String Content",
"IsCompany":true,
"LocationReference":"String Content",
"DLNumber":"String Content",
"DLState":"String Content",
"CustomerType":
"Relationship":
}
}
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 |