Skip to main content

Class AddAccountsResponse


Properties

NAMETYPEDESCRIPTIONEXAMPLES
ResponseCodeStringResponse status. For a successful response, the code will be “00”.

Select possible Error response codes:
  • E12 = No eligible accounts were found after applying account eligibility controls configured on the Ensenta side
  • E500 = Invalid Parameter, namely no accounts passed in the request.
<ResponseCode>00</ResponseCode>
ErrorResponseTextStringIf the ResponseCode value is not “00”, ErrorResponseText will be populated with the name of the response code. This is a developer/app level description and is intended to be internal facing only.<ErrorResponseText/>
LocalizedMessageTextStringIf the ResponseCode value is not “00”, LocalizedMessageText will be populated with messaging associated with the specific response code. The messaging for each error response code can be customized by the Financial Institution by request. This error message is intended to be external facing within the app.<LocalizedMessageText/>
DepositUrlStringThe value returned is the URL to which the user should beredirected.<DepositUrl>
https://rdc.test.ensenta.net/rdc2/landing/a15adeacae2c-47dc-86ca973a7bc79dfb
</DepositUrl>

Examples

<s:Envelope
xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<AddAccountsResponse
xmlns="http://ensenta.com/ECPartnerDepositRequest">
<AddAccountsResult>
<ResponseCode>00</ResponseCode>
<ErrorResponseText/>
<LocalizedMessageText/>
<DepositUrl>https://rdc.test.ensenta.net/rdc2/landing/a15adeac-ae2c47dc-86ca-973a7bc79dfb</DepositUrl>
</AddAccountsResult>
</AddAccountsResponse>
</s:Body>
</s:Envelope>