PUT api/customer/{id}

Update a customer.

Requires Authorisation

The api request must supply authenticated token in a custom variable in the request header. The custom variable name is configured in web.config. The default name of the custom variable is “X-Fern-Token”.

Requires Api License and User Access

The api requires license and user permission for API ID, PUTapi/customer/{id}. The user permission can be defined on User Settings screen in Abacus. For license, please contact Fern manager.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Customer's Id.

integer

Required

Body Parameters

Customer data.

CustomerDto
NameDescriptionTypeAdditional information
CustomerID

Customer's id.

integer
CustomerType

Customer's type.

CustomerTypes Required. The valid values for this field are 1 - Personal and 8 - SolidarityGroup.
Name

Customer's name.

string Read-Only.
Number

Customer's number.

string Read-Only.
BranchID

Customer's branch Id.

integer Required. The value will be ignored when a user edits a customer
CustomerAddress

Customer's address.

Collection of CustomerAddressDto
Persons

Members of customer.

Collection of PersonDto
Surveys

Surveys of customer.

Collection of SurveyDto
AltName

AltName.

string
InitialProductId

InitialProductId.

integer
DefaultCUAccountPortfolioID

Portfolio ID.

integer This value is optional as per system settings in Abacus.
Status

Customer's Status.

CustomerStatus Read-Only. The valid values allowed for this field are 0 - Closed, 1 - Opened and 2 -Frozen.
CorrespondenceName

Correspondence name of the customer.

string
NumberOfActiveLoans

Avtive number of loans the customer has.

integer Read-Only.
CustomerAddressString

Combined customer address value. Used to display customer address in a single line.

string Read-Only.
CommunityCustomers

Communities of a customer.

Collection of CommunityCustomerDto
AnalysisLinks

Analysis Field Details of customer.

Collection of AnalysisLinkDto
TrackAccsIndividually

Track accounts of this group individually.

boolean Required for solidarity customer.By default it is true.
CustomerHasCommunityLoans

Determines whether solidarity group has loans or not.

boolean Read only.
SMSConsentGiven

Determines whether system sends SMS to customers.

boolean
SMSLoanApprovalAlerts

Determines whether system sends SMS for loan approval.

boolean
SMSTransactionAlerts

Determines whether system sends for transactions.

boolean
DateJoined

Joining date of the Customer.

string Required. Date joined can not be earlier than the date of birth for personal type of customer.
MiscPersonalID

The personal ID recorded for the customer to verify their identity.

integer
MiscAddresssID

The personal ID recorded for the customer to verify their identity.

integer
CreditRatingID

Credit Rating.

byte
VillageBankID

The village bank for the customer. Selecting a village bank will default all loan repayments to fall on the meeting date of the village bank.

integer
ICBConsentGiven

Determines whether to include the Irish Credit Bureau options.

boolean
InitialBatchID

The initial customer batch that the customer will be added to when the customer is first added.

integer
InitialFeeID

The initial fee charged to the new account when the customer is first added.

integer
SCVAccountCodeID

SCV status Code can be used and used as a batch to run reports.

byte
StatementFrequencyID

Determines how frequent the statement has to be generated in periods.

byte
StatementFrequencyNum

Determines how frequent the statement has to be generated in terms.

integer
ExperianConsentGiven

Determines whether to include the Experian Credit Bureau options.

boolean
EquifaxConsentGiven

Determines whether to include the Equifax Credit Bureau options.

boolean
SMSTransactionTypes

transaction types for which system send SMS.

integer
SMSTransactionSources

transaction sources for which system send SMS.

integer
OverrideLoanAmountLimits

Determines whether to Override the Loan Amount Limits.

boolean
Bankaccounts

Bank Account details for that Customer.

Collection of BankAccountsDto
CustomerLoanLimits

Customer Loan Limit override

Collection of CustomerLoanLimitDto
CustomerRelationships

Relationships with other customers in same MFI

Collection of CustomerRelationshipDto Read only.
CustomerBlackListing

Blacklisting data of Customer.

Collection of CustomerBlacklistingDto Read only.
RegularStatements

Determines whether to include the Regular Statements.

boolean
NumberOfCommunities

Number of Communities(groups) on which the customer is in active member.

integer
Organisation

Organisation Details.

OrganisationCustomerDto
Closed

Customer is closed or not.

boolean
ClosedReasonID

Customer closed reason Id.

integer
Communities

Communities information in which a customer is member.

Collection of CommunityDto
RescheduleLoans

Indicates true if loans to be rescheduled on change in village bank.

boolean
OriginalVillageBankID

Identifier of previous Village Bank mapped to customer.

integer

Request Formats

application/json, text/json

Sample:
{
  "customerID": 1,
  "customerType": 1,
  "name": "sample string 1",
  "number": "sample string 2",
  "branchID": 1,
  "customerAddress": [
    {
      "customerAddressID": 1,
      "customerID": 1,
      "address": {
        "address1": "sample string 1",
        "address2": "sample string 2",
        "address3": "sample string 3",
        "townCity": "sample string 4",
        "county": "sample string 5",
        "state": "sample string 6",
        "postalCode": "sample string 7",
        "country": "sample string 8",
        "region": "sample string 9",
        "address1ID": 1,
        "address2ID": 1,
        "address3ID": 1,
        "townCityID": 1,
        "countyID": 1,
        "stateID": 1,
        "postalCodeID": 1,
        "countryID": 1,
        "regionID": 1
      },
      "addressTypeID": 1,
      "dateMovedIn": "sample string 1",
      "dateMovedOut": "sample string 2",
      "isPrimary": true
    },
    {
      "customerAddressID": 1,
      "customerID": 1,
      "address": {
        "address1": "sample string 1",
        "address2": "sample string 2",
        "address3": "sample string 3",
        "townCity": "sample string 4",
        "county": "sample string 5",
        "state": "sample string 6",
        "postalCode": "sample string 7",
        "country": "sample string 8",
        "region": "sample string 9",
        "address1ID": 1,
        "address2ID": 1,
        "address3ID": 1,
        "townCityID": 1,
        "countyID": 1,
        "stateID": 1,
        "postalCodeID": 1,
        "countryID": 1,
        "regionID": 1
      },
      "addressTypeID": 1,
      "dateMovedIn": "sample string 1",
      "dateMovedOut": "sample string 2",
      "isPrimary": true
    }
  ],
  "persons": [
    {
      "personID": 1,
      "title": 64,
      "gender": 64,
      "forenamePartOne": "sample string 1",
      "forenamePartTwo": "sample string 2",
      "forenamePartThree": "sample string 3",
      "surname": "sample string 4",
      "socialSecurityNumber": "sample string 5",
      "drivingLicenceNumber": "sample string 6",
      "dateOfBirth": "sample string 7",
      "telephone1": "sample string 8",
      "telephone2": "sample string 9",
      "telephone3": "sample string 10",
      "smsPin": "sample string 11",
      "eMail": "sample string 12",
      "fingerPrints": [
        {
          "valueBase64": "",
          "fingerPrintId": 1,
          "personID": 1,
          "finger": 64,
          "pictureID": 1,
          "fingerValue": "sample string 1"
        },
        {
          "valueBase64": "",
          "fingerPrintId": 1,
          "personID": 1,
          "finger": 64,
          "pictureID": 1,
          "fingerValue": "sample string 1"
        }
      ],
      "pictureID": 1,
      "cardPictureID": 1,
      "signatureID": 1,
      "employers": [
        {
          "personEmployeeID": 1,
          "personID": 1,
          "employerID": 1,
          "startEmployer": "sample string 1",
          "endEmployer": "sample string 2",
          "employeeNumber": "sample string 3",
          "position": "sample string 4",
          "salary": 1.0,
          "paymentPeriod": 64,
          "currencyID": 1,
          "partner": 64,
          "startPosition": "sample string 5"
        },
        {
          "personEmployeeID": 1,
          "personID": 1,
          "employerID": 1,
          "startEmployer": "sample string 1",
          "endEmployer": "sample string 2",
          "employeeNumber": "sample string 3",
          "position": "sample string 4",
          "salary": 1.0,
          "paymentPeriod": 64,
          "currencyID": 1,
          "partner": 64,
          "startPosition": "sample string 5"
        }
      ],
      "monthlyPension": 1.0,
      "approvedBenefits": 1.0,
      "otherIncome": 1.0,
      "monthlyPensionPartner": 1.0,
      "approvedBenefitsPartner": 1.0,
      "otherIncomePartner": 1.0,
      "tempToken": "sample string 13",
      "deleteFingerprints": [
        "sample string 1",
        "sample string 2"
      ]
    },
    {
      "personID": 1,
      "title": 64,
      "gender": 64,
      "forenamePartOne": "sample string 1",
      "forenamePartTwo": "sample string 2",
      "forenamePartThree": "sample string 3",
      "surname": "sample string 4",
      "socialSecurityNumber": "sample string 5",
      "drivingLicenceNumber": "sample string 6",
      "dateOfBirth": "sample string 7",
      "telephone1": "sample string 8",
      "telephone2": "sample string 9",
      "telephone3": "sample string 10",
      "smsPin": "sample string 11",
      "eMail": "sample string 12",
      "fingerPrints": [
        {
          "valueBase64": "",
          "fingerPrintId": 1,
          "personID": 1,
          "finger": 64,
          "pictureID": 1,
          "fingerValue": "sample string 1"
        },
        {
          "valueBase64": "",
          "fingerPrintId": 1,
          "personID": 1,
          "finger": 64,
          "pictureID": 1,
          "fingerValue": "sample string 1"
        }
      ],
      "pictureID": 1,
      "cardPictureID": 1,
      "signatureID": 1,
      "employers": [
        {
          "personEmployeeID": 1,
          "personID": 1,
          "employerID": 1,
          "startEmployer": "sample string 1",
          "endEmployer": "sample string 2",
          "employeeNumber": "sample string 3",
          "position": "sample string 4",
          "salary": 1.0,
          "paymentPeriod": 64,
          "currencyID": 1,
          "partner": 64,
          "startPosition": "sample string 5"
        },
        {
          "personEmployeeID": 1,
          "personID": 1,
          "employerID": 1,
          "startEmployer": "sample string 1",
          "endEmployer": "sample string 2",
          "employeeNumber": "sample string 3",
          "position": "sample string 4",
          "salary": 1.0,
          "paymentPeriod": 64,
          "currencyID": 1,
          "partner": 64,
          "startPosition": "sample string 5"
        }
      ],
      "monthlyPension": 1.0,
      "approvedBenefits": 1.0,
      "otherIncome": 1.0,
      "monthlyPensionPartner": 1.0,
      "approvedBenefitsPartner": 1.0,
      "otherIncomePartner": 1.0,
      "tempToken": "sample string 13",
      "deleteFingerprints": [
        "sample string 1",
        "sample string 2"
      ]
    }
  ],
  "surveys": [
    {
      "surveyID": 1,
      "userDefinedFieldGroupID": 1,
      "date": "sample string 1",
      "totalScore": 1.0,
      "udfLinks": [
        {
          "udfLinkID": 1,
          "surveyID": 1,
          "customerID": 1,
          "cuAccountID": 1,
          "productID": 1,
          "cuInsurancePolicyID": 1,
          "receiptNo": 1,
          "branchID": 1,
          "interactionID": 1,
          "cuLoanReviewID": 1,
          "udfFieldID": 1,
          "value": "sample string 1",
          "userDefinedFieldListID": 1,
          "order": 1,
          "mask": "sample string 2",
          "mandatory": true,
          "uniqueField": true,
          "validateActiveUDF": true,
          "udfType": 64,
          "fieldName": "sample string 3",
          "fieldCurrency": 1,
          "dateValue": "sample string 4",
          "customerTypes": 1
        },
        {
          "udfLinkID": 1,
          "surveyID": 1,
          "customerID": 1,
          "cuAccountID": 1,
          "productID": 1,
          "cuInsurancePolicyID": 1,
          "receiptNo": 1,
          "branchID": 1,
          "interactionID": 1,
          "cuLoanReviewID": 1,
          "udfFieldID": 1,
          "value": "sample string 1",
          "userDefinedFieldListID": 1,
          "order": 1,
          "mask": "sample string 2",
          "mandatory": true,
          "uniqueField": true,
          "validateActiveUDF": true,
          "udfType": 64,
          "fieldName": "sample string 3",
          "fieldCurrency": 1,
          "dateValue": "sample string 4",
          "customerTypes": 1
        }
      ]
    },
    {
      "surveyID": 1,
      "userDefinedFieldGroupID": 1,
      "date": "sample string 1",
      "totalScore": 1.0,
      "udfLinks": [
        {
          "udfLinkID": 1,
          "surveyID": 1,
          "customerID": 1,
          "cuAccountID": 1,
          "productID": 1,
          "cuInsurancePolicyID": 1,
          "receiptNo": 1,
          "branchID": 1,
          "interactionID": 1,
          "cuLoanReviewID": 1,
          "udfFieldID": 1,
          "value": "sample string 1",
          "userDefinedFieldListID": 1,
          "order": 1,
          "mask": "sample string 2",
          "mandatory": true,
          "uniqueField": true,
          "validateActiveUDF": true,
          "udfType": 64,
          "fieldName": "sample string 3",
          "fieldCurrency": 1,
          "dateValue": "sample string 4",
          "customerTypes": 1
        },
        {
          "udfLinkID": 1,
          "surveyID": 1,
          "customerID": 1,
          "cuAccountID": 1,
          "productID": 1,
          "cuInsurancePolicyID": 1,
          "receiptNo": 1,
          "branchID": 1,
          "interactionID": 1,
          "cuLoanReviewID": 1,
          "udfFieldID": 1,
          "value": "sample string 1",
          "userDefinedFieldListID": 1,
          "order": 1,
          "mask": "sample string 2",
          "mandatory": true,
          "uniqueField": true,
          "validateActiveUDF": true,
          "udfType": 64,
          "fieldName": "sample string 3",
          "fieldCurrency": 1,
          "dateValue": "sample string 4",
          "customerTypes": 1
        }
      ]
    }
  ],
  "altName": "sample string 3",
  "initialProductId": 1,
  "defaultCUAccountPortfolioID": 1,
  "status": 1,
  "correspondenceName": "sample string 4",
  "numberOfActiveLoans": 1,
  "customerAddressString": "sample string 5",
  "communityCustomers": [
    {
      "communityID": 1,
      "customerID": 1,
      "comments": "sample string 1",
      "communityStatus": 1,
      "customerRole": 1,
      "numberOfActiveLoans": 1,
      "correspondenceName": "sample string 2"
    },
    {
      "communityID": 1,
      "customerID": 1,
      "comments": "sample string 1",
      "communityStatus": 1,
      "customerRole": 1,
      "numberOfActiveLoans": 1,
      "correspondenceName": "sample string 2"
    }
  ],
  "analysisLinks": [
    {
      "analysisLinkID": 1,
      "analysisFieldID": 1,
      "customerID": 1,
      "cuAccountID": 1,
      "receiptNo": 1,
      "productID": 1,
      "accountID": 1,
      "journalPageID": 1,
      "journalEntryID": 1,
      "journalPostID": 1,
      "recurringPageID": 1,
      "recurringEntryID": 1,
      "cuInsurancePolicyID": 1,
      "selected": true
    },
    {
      "analysisLinkID": 1,
      "analysisFieldID": 1,
      "customerID": 1,
      "cuAccountID": 1,
      "receiptNo": 1,
      "productID": 1,
      "accountID": 1,
      "journalPageID": 1,
      "journalEntryID": 1,
      "journalPostID": 1,
      "recurringPageID": 1,
      "recurringEntryID": 1,
      "cuInsurancePolicyID": 1,
      "selected": true
    }
  ],
  "trackAccsIndividually": true,
  "customerHasCommunityLoans": true,
  "smsConsentGiven": true,
  "smsLoanApprovalAlerts": true,
  "smsTransactionAlerts": true,
  "dateJoined": "sample string 6",
  "miscPersonalID": 1,
  "miscAddresssID": 1,
  "creditRatingID": 64,
  "villageBankID": 1,
  "icbConsentGiven": true,
  "initialBatchID": 1,
  "initialFeeID": 1,
  "scvAccountCodeID": 64,
  "statementFrequencyID": 64,
  "statementFrequencyNum": 1,
  "experianConsentGiven": true,
  "equifaxConsentGiven": true,
  "smsTransactionTypes": 1,
  "smsTransactionSources": 1,
  "overrideLoanAmountLimits": true,
  "bankaccounts": [
    {
      "bankAccountID": 1,
      "bankBranchID": 1,
      "bankAccountName": "sample string 1",
      "bankAccountNumber": "sample string 2",
      "bankAccountType": 1,
      "chequeNumber": "sample string 3",
      "overdraftLimit": 4.0,
      "payTypes": 1,
      "isChequeCompulsoryDR": true,
      "isChequeCompulsoryCR": true,
      "dateOpened": "sample string 5",
      "dateClosed": "sample string 6",
      "bankID": 1
    },
    {
      "bankAccountID": 1,
      "bankBranchID": 1,
      "bankAccountName": "sample string 1",
      "bankAccountNumber": "sample string 2",
      "bankAccountType": 1,
      "chequeNumber": "sample string 3",
      "overdraftLimit": 4.0,
      "payTypes": 1,
      "isChequeCompulsoryDR": true,
      "isChequeCompulsoryCR": true,
      "dateOpened": "sample string 5",
      "dateClosed": "sample string 6",
      "bankID": 1
    }
  ],
  "customerLoanLimits": [
    {
      "customerLoanLimitID": 1,
      "customerID": 1,
      "currencyID": 1,
      "maximumAmount": 1.0
    },
    {
      "customerLoanLimitID": 1,
      "customerID": 1,
      "currencyID": 1,
      "maximumAmount": 1.0
    }
  ],
  "customerRelationships": [
    {
      "customerRelationshipID": 1,
      "relationshipID": 1,
      "customerID": 1,
      "childCustomerID": 1,
      "relationshipListKey": "sample string 1",
      "name": "sample string 2",
      "directional": true,
      "active": true,
      "reversed": true
    },
    {
      "customerRelationshipID": 1,
      "relationshipID": 1,
      "customerID": 1,
      "childCustomerID": 1,
      "relationshipListKey": "sample string 1",
      "name": "sample string 2",
      "directional": true,
      "active": true,
      "reversed": true
    }
  ],
  "customerBlackListing": [
    {
      "customerBlacklistingID": 1,
      "customerID": 1,
      "addDate": "sample string 1",
      "addUserID": 1,
      "cuBlacklistStatus": 0,
      "cuBlacklistingReasonID": 1
    },
    {
      "customerBlacklistingID": 1,
      "customerID": 1,
      "addDate": "sample string 1",
      "addUserID": 1,
      "cuBlacklistStatus": 0,
      "cuBlacklistingReasonID": 1
    }
  ],
  "regularStatements": true,
  "numberOfCommunities": 1,
  "organisation": {
    "organisationID": 1,
    "regNumber": "sample string 1",
    "type": 64,
    "telephone1": "sample string 2",
    "telephone2": "sample string 3",
    "fax": "sample string 4",
    "webSite": "sample string 5",
    "eMail": "sample string 6",
    "accountsYearEnd": "sample string 7"
  },
  "closed": true,
  "closedReasonID": 1,
  "communities": [
    {
      "communityID": 1,
      "communityName": "sample string 1",
      "status": 64,
      "customerRole": 1,
      "closed": true
    },
    {
      "communityID": 1,
      "communityName": "sample string 1",
      "status": 64,
      "customerRole": 1,
      "closed": true
    }
  ],
  "rescheduleLoans": true,
  "originalVillageBankID": 1
}

application/xml, text/xml

Sample:
<CustomerDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">
  <AltName>sample string 3</AltName>
  <AnalysisLinks xmlns:d2p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.Analysis">
    <d2p1:AnalysisLinkDto>
      <d2p1:AccountID>1</d2p1:AccountID>
      <d2p1:AnalysisFieldID>1</d2p1:AnalysisFieldID>
      <d2p1:AnalysisLinkID>1</d2p1:AnalysisLinkID>
      <d2p1:CUAccountID>1</d2p1:CUAccountID>
      <d2p1:CUInsurancePolicyID>1</d2p1:CUInsurancePolicyID>
      <d2p1:CustomerID>1</d2p1:CustomerID>
      <d2p1:JournalEntryID>1</d2p1:JournalEntryID>
      <d2p1:JournalPageID>1</d2p1:JournalPageID>
      <d2p1:JournalPostID>1</d2p1:JournalPostID>
      <d2p1:ProductID>1</d2p1:ProductID>
      <d2p1:ReceiptNo>1</d2p1:ReceiptNo>
      <d2p1:RecurringEntryID>1</d2p1:RecurringEntryID>
      <d2p1:RecurringPageID>1</d2p1:RecurringPageID>
      <d2p1:Selected>true</d2p1:Selected>
    </d2p1:AnalysisLinkDto>
    <d2p1:AnalysisLinkDto>
      <d2p1:AccountID>1</d2p1:AccountID>
      <d2p1:AnalysisFieldID>1</d2p1:AnalysisFieldID>
      <d2p1:AnalysisLinkID>1</d2p1:AnalysisLinkID>
      <d2p1:CUAccountID>1</d2p1:CUAccountID>
      <d2p1:CUInsurancePolicyID>1</d2p1:CUInsurancePolicyID>
      <d2p1:CustomerID>1</d2p1:CustomerID>
      <d2p1:JournalEntryID>1</d2p1:JournalEntryID>
      <d2p1:JournalPageID>1</d2p1:JournalPageID>
      <d2p1:JournalPostID>1</d2p1:JournalPostID>
      <d2p1:ProductID>1</d2p1:ProductID>
      <d2p1:ReceiptNo>1</d2p1:ReceiptNo>
      <d2p1:RecurringEntryID>1</d2p1:RecurringEntryID>
      <d2p1:RecurringPageID>1</d2p1:RecurringPageID>
      <d2p1:Selected>true</d2p1:Selected>
    </d2p1:AnalysisLinkDto>
  </AnalysisLinks>
  <Bankaccounts>
    <BankAccountsDto>
      <BankAccountID>1</BankAccountID>
      <BankAccountName>sample string 1</BankAccountName>
      <BankAccountNumber>sample string 2</BankAccountNumber>
      <BankAccountType>1</BankAccountType>
      <BankBranchID>1</BankBranchID>
      <BankID>1</BankID>
      <ChequeNumber>sample string 3</ChequeNumber>
      <DateClosed>sample string 6</DateClosed>
      <DateOpened>sample string 5</DateOpened>
      <IsChequeCompulsoryCR>true</IsChequeCompulsoryCR>
      <IsChequeCompulsoryDR>true</IsChequeCompulsoryDR>
      <OverdraftLimit>4</OverdraftLimit>
      <PayTypes>InternalPersonalCheque</PayTypes>
    </BankAccountsDto>
    <BankAccountsDto>
      <BankAccountID>1</BankAccountID>
      <BankAccountName>sample string 1</BankAccountName>
      <BankAccountNumber>sample string 2</BankAccountNumber>
      <BankAccountType>1</BankAccountType>
      <BankBranchID>1</BankBranchID>
      <BankID>1</BankID>
      <ChequeNumber>sample string 3</ChequeNumber>
      <DateClosed>sample string 6</DateClosed>
      <DateOpened>sample string 5</DateOpened>
      <IsChequeCompulsoryCR>true</IsChequeCompulsoryCR>
      <IsChequeCompulsoryDR>true</IsChequeCompulsoryDR>
      <OverdraftLimit>4</OverdraftLimit>
      <PayTypes>InternalPersonalCheque</PayTypes>
    </BankAccountsDto>
  </Bankaccounts>
  <BranchID>1</BranchID>
  <Closed>true</Closed>
  <ClosedReasonID>1</ClosedReasonID>
  <Communities xmlns:d2p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU.Customer">
    <d2p1:CommunityDto>
      <d2p1:Closed>true</d2p1:Closed>
      <d2p1:CommunityID>1</d2p1:CommunityID>
      <d2p1:CommunityName>sample string 1</d2p1:CommunityName>
      <d2p1:CustomerRole>1</d2p1:CustomerRole>
      <d2p1:Status>64</d2p1:Status>
    </d2p1:CommunityDto>
    <d2p1:CommunityDto>
      <d2p1:Closed>true</d2p1:Closed>
      <d2p1:CommunityID>1</d2p1:CommunityID>
      <d2p1:CommunityName>sample string 1</d2p1:CommunityName>
      <d2p1:CustomerRole>1</d2p1:CustomerRole>
      <d2p1:Status>64</d2p1:Status>
    </d2p1:CommunityDto>
  </Communities>
  <CommunityCustomers xmlns:d2p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU.Customer">
    <d2p1:CommunityCustomerDto>
      <d2p1:Comments>sample string 1</d2p1:Comments>
      <d2p1:CommunityID>1</d2p1:CommunityID>
      <d2p1:CommunityStatus>Active</d2p1:CommunityStatus>
      <d2p1:CorrespondenceName>sample string 2</d2p1:CorrespondenceName>
      <d2p1:CustomerID>1</d2p1:CustomerID>
      <d2p1:CustomerRole>1</d2p1:CustomerRole>
      <d2p1:NumberOfActiveLoans>1</d2p1:NumberOfActiveLoans>
    </d2p1:CommunityCustomerDto>
    <d2p1:CommunityCustomerDto>
      <d2p1:Comments>sample string 1</d2p1:Comments>
      <d2p1:CommunityID>1</d2p1:CommunityID>
      <d2p1:CommunityStatus>Active</d2p1:CommunityStatus>
      <d2p1:CorrespondenceName>sample string 2</d2p1:CorrespondenceName>
      <d2p1:CustomerID>1</d2p1:CustomerID>
      <d2p1:CustomerRole>1</d2p1:CustomerRole>
      <d2p1:NumberOfActiveLoans>1</d2p1:NumberOfActiveLoans>
    </d2p1:CommunityCustomerDto>
  </CommunityCustomers>
  <CorrespondenceName>sample string 4</CorrespondenceName>
  <CreditRatingID>64</CreditRatingID>
  <CustomerAddress>
    <CustomerAddressDto>
      <Address>
        <Address1>sample string 1</Address1>
        <Address1ID>1</Address1ID>
        <Address2>sample string 2</Address2>
        <Address2ID>1</Address2ID>
        <Address3>sample string 3</Address3>
        <Address3ID>1</Address3ID>
        <Country>sample string 8</Country>
        <CountryID>1</CountryID>
        <County>sample string 5</County>
        <CountyID>1</CountyID>
        <PostalCode>sample string 7</PostalCode>
        <PostalCodeID>1</PostalCodeID>
        <Region>sample string 9</Region>
        <RegionID>1</RegionID>
        <State>sample string 6</State>
        <StateID>1</StateID>
        <TownCity>sample string 4</TownCity>
        <TownCityID>1</TownCityID>
      </Address>
      <AddressTypeID>1</AddressTypeID>
      <CustomerAddressID>1</CustomerAddressID>
      <CustomerID>1</CustomerID>
      <DateMovedIn>sample string 1</DateMovedIn>
      <DateMovedOut>sample string 2</DateMovedOut>
      <IsPrimary>true</IsPrimary>
    </CustomerAddressDto>
    <CustomerAddressDto>
      <Address>
        <Address1>sample string 1</Address1>
        <Address1ID>1</Address1ID>
        <Address2>sample string 2</Address2>
        <Address2ID>1</Address2ID>
        <Address3>sample string 3</Address3>
        <Address3ID>1</Address3ID>
        <Country>sample string 8</Country>
        <CountryID>1</CountryID>
        <County>sample string 5</County>
        <CountyID>1</CountyID>
        <PostalCode>sample string 7</PostalCode>
        <PostalCodeID>1</PostalCodeID>
        <Region>sample string 9</Region>
        <RegionID>1</RegionID>
        <State>sample string 6</State>
        <StateID>1</StateID>
        <TownCity>sample string 4</TownCity>
        <TownCityID>1</TownCityID>
      </Address>
      <AddressTypeID>1</AddressTypeID>
      <CustomerAddressID>1</CustomerAddressID>
      <CustomerID>1</CustomerID>
      <DateMovedIn>sample string 1</DateMovedIn>
      <DateMovedOut>sample string 2</DateMovedOut>
      <IsPrimary>true</IsPrimary>
    </CustomerAddressDto>
  </CustomerAddress>
  <CustomerAddressString>sample string 5</CustomerAddressString>
  <CustomerBlackListing xmlns:d2p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU">
    <d2p1:CustomerBlacklistingDto>
      <d2p1:AddDate>sample string 1</d2p1:AddDate>
      <d2p1:AddUserID>1</d2p1:AddUserID>
      <d2p1:CUBlacklistStatus>None</d2p1:CUBlacklistStatus>
      <d2p1:CUBlacklistingReasonID>1</d2p1:CUBlacklistingReasonID>
      <d2p1:CustomerBlacklistingID>1</d2p1:CustomerBlacklistingID>
      <d2p1:CustomerID>1</d2p1:CustomerID>
    </d2p1:CustomerBlacklistingDto>
    <d2p1:CustomerBlacklistingDto>
      <d2p1:AddDate>sample string 1</d2p1:AddDate>
      <d2p1:AddUserID>1</d2p1:AddUserID>
      <d2p1:CUBlacklistStatus>None</d2p1:CUBlacklistStatus>
      <d2p1:CUBlacklistingReasonID>1</d2p1:CUBlacklistingReasonID>
      <d2p1:CustomerBlacklistingID>1</d2p1:CustomerBlacklistingID>
      <d2p1:CustomerID>1</d2p1:CustomerID>
    </d2p1:CustomerBlacklistingDto>
  </CustomerBlackListing>
  <CustomerHasCommunityLoans>true</CustomerHasCommunityLoans>
  <CustomerID>1</CustomerID>
  <CustomerLoanLimits>
    <CustomerLoanLimitDto>
      <CurrencyID>1</CurrencyID>
      <CustomerID>1</CustomerID>
      <CustomerLoanLimitID>1</CustomerLoanLimitID>
      <MaximumAmount>1</MaximumAmount>
    </CustomerLoanLimitDto>
    <CustomerLoanLimitDto>
      <CurrencyID>1</CurrencyID>
      <CustomerID>1</CustomerID>
      <CustomerLoanLimitID>1</CustomerLoanLimitID>
      <MaximumAmount>1</MaximumAmount>
    </CustomerLoanLimitDto>
  </CustomerLoanLimits>
  <CustomerRelationships xmlns:d2p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU.Customer">
    <d2p1:CustomerRelationshipDto>
      <Active xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU">true</Active>
      <Directional xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU">true</Directional>
      <Name xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU">sample string 2</Name>
      <RelationshipID i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU" />
      <Reversed xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU">true</Reversed>
      <d2p1:ChildCustomerID>1</d2p1:ChildCustomerID>
      <d2p1:CustomerID>1</d2p1:CustomerID>
      <d2p1:CustomerRelationshipID>1</d2p1:CustomerRelationshipID>
      <d2p1:RelationshipID>1</d2p1:RelationshipID>
      <d2p1:RelationshipListKey>sample string 1</d2p1:RelationshipListKey>
    </d2p1:CustomerRelationshipDto>
    <d2p1:CustomerRelationshipDto>
      <Active xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU">true</Active>
      <Directional xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU">true</Directional>
      <Name xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU">sample string 2</Name>
      <RelationshipID i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU" />
      <Reversed xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU">true</Reversed>
      <d2p1:ChildCustomerID>1</d2p1:ChildCustomerID>
      <d2p1:CustomerID>1</d2p1:CustomerID>
      <d2p1:CustomerRelationshipID>1</d2p1:CustomerRelationshipID>
      <d2p1:RelationshipID>1</d2p1:RelationshipID>
      <d2p1:RelationshipListKey>sample string 1</d2p1:RelationshipListKey>
    </d2p1:CustomerRelationshipDto>
  </CustomerRelationships>
  <CustomerType>Personal</CustomerType>
  <DateJoined>sample string 6</DateJoined>
  <DefaultCUAccountPortfolioID>1</DefaultCUAccountPortfolioID>
  <EquifaxConsentGiven>true</EquifaxConsentGiven>
  <ExperianConsentGiven>true</ExperianConsentGiven>
  <ICBConsentGiven>true</ICBConsentGiven>
  <InitialBatchID>1</InitialBatchID>
  <InitialFeeID>1</InitialFeeID>
  <InitialProductId>1</InitialProductId>
  <MiscAddresssID>1</MiscAddresssID>
  <MiscPersonalID>1</MiscPersonalID>
  <Name>sample string 1</Name>
  <Number>sample string 2</Number>
  <NumberOfActiveLoans>1</NumberOfActiveLoans>
  <NumberOfCommunities>1</NumberOfCommunities>
  <Organisation>
    <AccountsYearEnd>sample string 7</AccountsYearEnd>
    <EMail>sample string 6</EMail>
    <Fax>sample string 4</Fax>
    <OrganisationID>1</OrganisationID>
    <RegNumber>sample string 1</RegNumber>
    <Telephone1>sample string 2</Telephone1>
    <Telephone2>sample string 3</Telephone2>
    <Type>64</Type>
    <WebSite>sample string 5</WebSite>
  </Organisation>
  <OriginalVillageBankID>1</OriginalVillageBankID>
  <OverrideLoanAmountLimits>true</OverrideLoanAmountLimits>
  <Persons>
    <PersonDto>
      <ApprovedBenefits>1</ApprovedBenefits>
      <ApprovedBenefitsPartner>1</ApprovedBenefitsPartner>
      <CardPictureID>1</CardPictureID>
      <DateOfBirth>sample string 7</DateOfBirth>
      <DeleteFingerprints xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:string>sample string 1</d4p1:string>
        <d4p1:string>sample string 2</d4p1:string>
      </DeleteFingerprints>
      <DrivingLicenceNumber>sample string 6</DrivingLicenceNumber>
      <EMail>sample string 12</EMail>
      <Employers xmlns:d4p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU.Customer">
        <d4p1:PersonEmployeeDto>
          <d4p1:CurrencyID>1</d4p1:CurrencyID>
          <d4p1:EmployeeNumber>sample string 3</d4p1:EmployeeNumber>
          <d4p1:EmployerID>1</d4p1:EmployerID>
          <d4p1:EndEmployer>sample string 2</d4p1:EndEmployer>
          <d4p1:Partner>64</d4p1:Partner>
          <d4p1:PaymentPeriod>64</d4p1:PaymentPeriod>
          <d4p1:PersonEmployeeID>1</d4p1:PersonEmployeeID>
          <d4p1:PersonID>1</d4p1:PersonID>
          <d4p1:Position>sample string 4</d4p1:Position>
          <d4p1:Salary>1</d4p1:Salary>
          <d4p1:StartEmployer>sample string 1</d4p1:StartEmployer>
          <d4p1:StartPosition>sample string 5</d4p1:StartPosition>
        </d4p1:PersonEmployeeDto>
        <d4p1:PersonEmployeeDto>
          <d4p1:CurrencyID>1</d4p1:CurrencyID>
          <d4p1:EmployeeNumber>sample string 3</d4p1:EmployeeNumber>
          <d4p1:EmployerID>1</d4p1:EmployerID>
          <d4p1:EndEmployer>sample string 2</d4p1:EndEmployer>
          <d4p1:Partner>64</d4p1:Partner>
          <d4p1:PaymentPeriod>64</d4p1:PaymentPeriod>
          <d4p1:PersonEmployeeID>1</d4p1:PersonEmployeeID>
          <d4p1:PersonID>1</d4p1:PersonID>
          <d4p1:Position>sample string 4</d4p1:Position>
          <d4p1:Salary>1</d4p1:Salary>
          <d4p1:StartEmployer>sample string 1</d4p1:StartEmployer>
          <d4p1:StartPosition>sample string 5</d4p1:StartPosition>
        </d4p1:PersonEmployeeDto>
      </Employers>
      <FingerPrints>
        <FingerPrintDto>
          <Finger>64</Finger>
          <FingerPrintId>1</FingerPrintId>
          <FingerValue>sample string 1</FingerValue>
          <PersonID>1</PersonID>
          <PictureID>1</PictureID>
        </FingerPrintDto>
        <FingerPrintDto>
          <Finger>64</Finger>
          <FingerPrintId>1</FingerPrintId>
          <FingerValue>sample string 1</FingerValue>
          <PersonID>1</PersonID>
          <PictureID>1</PictureID>
        </FingerPrintDto>
      </FingerPrints>
      <ForenamePartOne>sample string 1</ForenamePartOne>
      <ForenamePartThree>sample string 3</ForenamePartThree>
      <ForenamePartTwo>sample string 2</ForenamePartTwo>
      <Gender>64</Gender>
      <MonthlyPension>1</MonthlyPension>
      <MonthlyPensionPartner>1</MonthlyPensionPartner>
      <OtherIncome>1</OtherIncome>
      <OtherIncomePartner>1</OtherIncomePartner>
      <PersonID>1</PersonID>
      <PictureID>1</PictureID>
      <SMSPin>sample string 11</SMSPin>
      <SignatureID>1</SignatureID>
      <SocialSecurityNumber>sample string 5</SocialSecurityNumber>
      <Surname>sample string 4</Surname>
      <Telephone1>sample string 8</Telephone1>
      <Telephone2>sample string 9</Telephone2>
      <Telephone3>sample string 10</Telephone3>
      <TempToken>sample string 13</TempToken>
      <Title>64</Title>
    </PersonDto>
    <PersonDto>
      <ApprovedBenefits>1</ApprovedBenefits>
      <ApprovedBenefitsPartner>1</ApprovedBenefitsPartner>
      <CardPictureID>1</CardPictureID>
      <DateOfBirth>sample string 7</DateOfBirth>
      <DeleteFingerprints xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:string>sample string 1</d4p1:string>
        <d4p1:string>sample string 2</d4p1:string>
      </DeleteFingerprints>
      <DrivingLicenceNumber>sample string 6</DrivingLicenceNumber>
      <EMail>sample string 12</EMail>
      <Employers xmlns:d4p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU.Customer">
        <d4p1:PersonEmployeeDto>
          <d4p1:CurrencyID>1</d4p1:CurrencyID>
          <d4p1:EmployeeNumber>sample string 3</d4p1:EmployeeNumber>
          <d4p1:EmployerID>1</d4p1:EmployerID>
          <d4p1:EndEmployer>sample string 2</d4p1:EndEmployer>
          <d4p1:Partner>64</d4p1:Partner>
          <d4p1:PaymentPeriod>64</d4p1:PaymentPeriod>
          <d4p1:PersonEmployeeID>1</d4p1:PersonEmployeeID>
          <d4p1:PersonID>1</d4p1:PersonID>
          <d4p1:Position>sample string 4</d4p1:Position>
          <d4p1:Salary>1</d4p1:Salary>
          <d4p1:StartEmployer>sample string 1</d4p1:StartEmployer>
          <d4p1:StartPosition>sample string 5</d4p1:StartPosition>
        </d4p1:PersonEmployeeDto>
        <d4p1:PersonEmployeeDto>
          <d4p1:CurrencyID>1</d4p1:CurrencyID>
          <d4p1:EmployeeNumber>sample string 3</d4p1:EmployeeNumber>
          <d4p1:EmployerID>1</d4p1:EmployerID>
          <d4p1:EndEmployer>sample string 2</d4p1:EndEmployer>
          <d4p1:Partner>64</d4p1:Partner>
          <d4p1:PaymentPeriod>64</d4p1:PaymentPeriod>
          <d4p1:PersonEmployeeID>1</d4p1:PersonEmployeeID>
          <d4p1:PersonID>1</d4p1:PersonID>
          <d4p1:Position>sample string 4</d4p1:Position>
          <d4p1:Salary>1</d4p1:Salary>
          <d4p1:StartEmployer>sample string 1</d4p1:StartEmployer>
          <d4p1:StartPosition>sample string 5</d4p1:StartPosition>
        </d4p1:PersonEmployeeDto>
      </Employers>
      <FingerPrints>
        <FingerPrintDto>
          <Finger>64</Finger>
          <FingerPrintId>1</FingerPrintId>
          <FingerValue>sample string 1</FingerValue>
          <PersonID>1</PersonID>
          <PictureID>1</PictureID>
        </FingerPrintDto>
        <FingerPrintDto>
          <Finger>64</Finger>
          <FingerPrintId>1</FingerPrintId>
          <FingerValue>sample string 1</FingerValue>
          <PersonID>1</PersonID>
          <PictureID>1</PictureID>
        </FingerPrintDto>
      </FingerPrints>
      <ForenamePartOne>sample string 1</ForenamePartOne>
      <ForenamePartThree>sample string 3</ForenamePartThree>
      <ForenamePartTwo>sample string 2</ForenamePartTwo>
      <Gender>64</Gender>
      <MonthlyPension>1</MonthlyPension>
      <MonthlyPensionPartner>1</MonthlyPensionPartner>
      <OtherIncome>1</OtherIncome>
      <OtherIncomePartner>1</OtherIncomePartner>
      <PersonID>1</PersonID>
      <PictureID>1</PictureID>
      <SMSPin>sample string 11</SMSPin>
      <SignatureID>1</SignatureID>
      <SocialSecurityNumber>sample string 5</SocialSecurityNumber>
      <Surname>sample string 4</Surname>
      <Telephone1>sample string 8</Telephone1>
      <Telephone2>sample string 9</Telephone2>
      <Telephone3>sample string 10</Telephone3>
      <TempToken>sample string 13</TempToken>
      <Title>64</Title>
    </PersonDto>
  </Persons>
  <RegularStatements>true</RegularStatements>
  <RescheduleLoans>true</RescheduleLoans>
  <SCVAccountCodeID>64</SCVAccountCodeID>
  <SMSConsentGiven>true</SMSConsentGiven>
  <SMSLoanApprovalAlerts>true</SMSLoanApprovalAlerts>
  <SMSTransactionAlerts>true</SMSTransactionAlerts>
  <SMSTransactionSources>1</SMSTransactionSources>
  <SMSTransactionTypes>1</SMSTransactionTypes>
  <StatementFrequencyID>64</StatementFrequencyID>
  <StatementFrequencyNum>1</StatementFrequencyNum>
  <Status>Normal</Status>
  <Surveys>
    <SurveyDto>
      <Date>sample string 1</Date>
      <SurveyID>1</SurveyID>
      <TotalScore>1</TotalScore>
      <UDFLinks xmlns:d4p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.UserDefinedFields">
        <d4p1:UserDefinedFieldLinkDto>
          <d4p1:BranchID>1</d4p1:BranchID>
          <d4p1:CUAccountID>1</d4p1:CUAccountID>
          <d4p1:CUInsurancePolicyID>1</d4p1:CUInsurancePolicyID>
          <d4p1:CULoanReviewID>1</d4p1:CULoanReviewID>
          <d4p1:CustomerID>1</d4p1:CustomerID>
          <d4p1:CustomerTypes>1</d4p1:CustomerTypes>
          <d4p1:DateValue>sample string 4</d4p1:DateValue>
          <d4p1:FieldCurrency>1</d4p1:FieldCurrency>
          <d4p1:FieldName>sample string 3</d4p1:FieldName>
          <d4p1:InteractionID>1</d4p1:InteractionID>
          <d4p1:Mandatory>true</d4p1:Mandatory>
          <d4p1:Mask>sample string 2</d4p1:Mask>
          <d4p1:Order>1</d4p1:Order>
          <d4p1:ProductID>1</d4p1:ProductID>
          <d4p1:ReceiptNo>1</d4p1:ReceiptNo>
          <d4p1:SurveyID>1</d4p1:SurveyID>
          <d4p1:UDFFieldID>1</d4p1:UDFFieldID>
          <d4p1:UDFLinkID>1</d4p1:UDFLinkID>
          <d4p1:UDFType>64</d4p1:UDFType>
          <d4p1:UniqueField>true</d4p1:UniqueField>
          <d4p1:UserDefinedFieldListID>1</d4p1:UserDefinedFieldListID>
          <d4p1:ValidateActiveUDF>true</d4p1:ValidateActiveUDF>
          <d4p1:Value>sample string 1</d4p1:Value>
        </d4p1:UserDefinedFieldLinkDto>
        <d4p1:UserDefinedFieldLinkDto>
          <d4p1:BranchID>1</d4p1:BranchID>
          <d4p1:CUAccountID>1</d4p1:CUAccountID>
          <d4p1:CUInsurancePolicyID>1</d4p1:CUInsurancePolicyID>
          <d4p1:CULoanReviewID>1</d4p1:CULoanReviewID>
          <d4p1:CustomerID>1</d4p1:CustomerID>
          <d4p1:CustomerTypes>1</d4p1:CustomerTypes>
          <d4p1:DateValue>sample string 4</d4p1:DateValue>
          <d4p1:FieldCurrency>1</d4p1:FieldCurrency>
          <d4p1:FieldName>sample string 3</d4p1:FieldName>
          <d4p1:InteractionID>1</d4p1:InteractionID>
          <d4p1:Mandatory>true</d4p1:Mandatory>
          <d4p1:Mask>sample string 2</d4p1:Mask>
          <d4p1:Order>1</d4p1:Order>
          <d4p1:ProductID>1</d4p1:ProductID>
          <d4p1:ReceiptNo>1</d4p1:ReceiptNo>
          <d4p1:SurveyID>1</d4p1:SurveyID>
          <d4p1:UDFFieldID>1</d4p1:UDFFieldID>
          <d4p1:UDFLinkID>1</d4p1:UDFLinkID>
          <d4p1:UDFType>64</d4p1:UDFType>
          <d4p1:UniqueField>true</d4p1:UniqueField>
          <d4p1:UserDefinedFieldListID>1</d4p1:UserDefinedFieldListID>
          <d4p1:ValidateActiveUDF>true</d4p1:ValidateActiveUDF>
          <d4p1:Value>sample string 1</d4p1:Value>
        </d4p1:UserDefinedFieldLinkDto>
      </UDFLinks>
      <UserDefinedFieldGroupID>1</UserDefinedFieldGroupID>
    </SurveyDto>
    <SurveyDto>
      <Date>sample string 1</Date>
      <SurveyID>1</SurveyID>
      <TotalScore>1</TotalScore>
      <UDFLinks xmlns:d4p1="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.UserDefinedFields">
        <d4p1:UserDefinedFieldLinkDto>
          <d4p1:BranchID>1</d4p1:BranchID>
          <d4p1:CUAccountID>1</d4p1:CUAccountID>
          <d4p1:CUInsurancePolicyID>1</d4p1:CUInsurancePolicyID>
          <d4p1:CULoanReviewID>1</d4p1:CULoanReviewID>
          <d4p1:CustomerID>1</d4p1:CustomerID>
          <d4p1:CustomerTypes>1</d4p1:CustomerTypes>
          <d4p1:DateValue>sample string 4</d4p1:DateValue>
          <d4p1:FieldCurrency>1</d4p1:FieldCurrency>
          <d4p1:FieldName>sample string 3</d4p1:FieldName>
          <d4p1:InteractionID>1</d4p1:InteractionID>
          <d4p1:Mandatory>true</d4p1:Mandatory>
          <d4p1:Mask>sample string 2</d4p1:Mask>
          <d4p1:Order>1</d4p1:Order>
          <d4p1:ProductID>1</d4p1:ProductID>
          <d4p1:ReceiptNo>1</d4p1:ReceiptNo>
          <d4p1:SurveyID>1</d4p1:SurveyID>
          <d4p1:UDFFieldID>1</d4p1:UDFFieldID>
          <d4p1:UDFLinkID>1</d4p1:UDFLinkID>
          <d4p1:UDFType>64</d4p1:UDFType>
          <d4p1:UniqueField>true</d4p1:UniqueField>
          <d4p1:UserDefinedFieldListID>1</d4p1:UserDefinedFieldListID>
          <d4p1:ValidateActiveUDF>true</d4p1:ValidateActiveUDF>
          <d4p1:Value>sample string 1</d4p1:Value>
        </d4p1:UserDefinedFieldLinkDto>
        <d4p1:UserDefinedFieldLinkDto>
          <d4p1:BranchID>1</d4p1:BranchID>
          <d4p1:CUAccountID>1</d4p1:CUAccountID>
          <d4p1:CUInsurancePolicyID>1</d4p1:CUInsurancePolicyID>
          <d4p1:CULoanReviewID>1</d4p1:CULoanReviewID>
          <d4p1:CustomerID>1</d4p1:CustomerID>
          <d4p1:CustomerTypes>1</d4p1:CustomerTypes>
          <d4p1:DateValue>sample string 4</d4p1:DateValue>
          <d4p1:FieldCurrency>1</d4p1:FieldCurrency>
          <d4p1:FieldName>sample string 3</d4p1:FieldName>
          <d4p1:InteractionID>1</d4p1:InteractionID>
          <d4p1:Mandatory>true</d4p1:Mandatory>
          <d4p1:Mask>sample string 2</d4p1:Mask>
          <d4p1:Order>1</d4p1:Order>
          <d4p1:ProductID>1</d4p1:ProductID>
          <d4p1:ReceiptNo>1</d4p1:ReceiptNo>
          <d4p1:SurveyID>1</d4p1:SurveyID>
          <d4p1:UDFFieldID>1</d4p1:UDFFieldID>
          <d4p1:UDFLinkID>1</d4p1:UDFLinkID>
          <d4p1:UDFType>64</d4p1:UDFType>
          <d4p1:UniqueField>true</d4p1:UniqueField>
          <d4p1:UserDefinedFieldListID>1</d4p1:UserDefinedFieldListID>
          <d4p1:ValidateActiveUDF>true</d4p1:ValidateActiveUDF>
          <d4p1:Value>sample string 1</d4p1:Value>
        </d4p1:UserDefinedFieldLinkDto>
      </UDFLinks>
      <UserDefinedFieldGroupID>1</UserDefinedFieldGroupID>
    </SurveyDto>
  </Surveys>
  <TrackAccsIndividually>true</TrackAccsIndividually>
  <VillageBankID>1</VillageBankID>
</CustomerDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response Codes

Success Status:

  • OK (200), please see resource description below.

Failed Status(es):

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<long xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</long>