Web Service: CreateValidatedCheckWithIR

Bret Hillbun -

Overview

Create a new transaction in the system. This service can be used to create check with images intended to be used with the Intelligent Routing model. The check will first be run through the check verification system (see ValidateCheck for more information).

Security

The user must have the Gateway.E-Check role and the Gateway.Check21 role; and the ClientID must be in the Client Tree for the authenticated user.

 

SOAP Service

Request

<CreateValidatedCheckWithIR xmlns="https://gateway.acheck21.com/GlobalGateway/">
    <Username>string</Username>
    <Password>string</Password>
    <ClientID>string</ClientID>
    <ClientTag>string</ClientTag>
    <IndividualName>string</IndividualName>
    <CheckNumber>string</CheckNumber>
    <TransitNumber>string</TransitNumber>
    <DDANumber>string</DDANumber>
    <AccountType>Checking or Savings</AccountType>
    <CheckAmount>string</CheckAmount>
    <EntryClass>TELPPDARCRCKCCDWEB or BOC</EntryClass>
    <FrontImage>Base64-encoded TIFF G4 image @200bpi</FrontImage>
    <RearImage>Base64-encoded TIFF G4 image @200bpi</RearImage>
    <MICR>Optional – string</MICR>
    <DLNumber>string</DLNumber>
    <PhoneNumber>string</PhoneNumber>
    <PostingDate>Optional – datetime</PostingDate>
    <Addenda>
        <Addendum>value</Addendum>
    </Addenda>
</CreateValidatedCheckWithIR>

Response

<CreateValidatedCheckWithIRResult xmlns="https://gateway.acheck21.com/GlobalGateway/">
    <Code>int</Code>
    <Message>string</Message>
    <ValidationData>
        <Response>Authorized or Declined or Warning or Error</Response>
        <AuthorizationCode>string</AuthorizationCode>
        <DetailLines>
            <string>string</string>
            ...
            <string>string</string>
        </DetailLines>
    </ValidationData>
    <CreateData>
        <CheckID>int</CheckID>
    </CreateData>
</CreateValidatedCheckWithIRResult>

 

REST Service

No REST support, please use a combination of ValidateCheck and CreateCheckWithIR to achieve the desired results.

Have more questions? Submit a request

Comments