Web Service: GetChecks

Bret Hillbun -

Overview

This service returns check detail information (see the GetCheck service) for one or more checks identified by CheckID.

Security

The user must have either the Gateway.User role and the ClientID that created the check must be in the Client Tree for the authenticated user. Return information will only be provided if the user also has the Gateway.Returns role.

 

SOAP Service

Request

<GetChecks xmlns="https://gateway.acheck21.com/GlobalGateway/">
    <Username>string</Username>
    <Password>string</Password>
    <CheckIDs>
        <CheckID>int</CheckID>
        ...
        <CheckID>int</CheckID>
    </CheckIDs>
</GetChecks>

 

Response

<GetChecksResponse xmlns="https://gateway.acheck21.com/GlobalGateway/">
<GetChecksResult>      <Code>int</Code>     <Message>string</Message>      <Checks>          <CheckInfo>...</CheckInfo>         ...          <CheckInfo>...</CheckInfo>     </Checks> </GetChecksResult>
</GetChecksResponse>

 

REST Service

There is no REST version of this service at this time

 

Possible values for <Code>

Code HTTP Status Code Description
0 200 No error
10000 401 Not authorized
0 204 No items found

 

Notes

The CheckInfo structure returned by the web service has the following C# definition:

public class CheckInfo {
    public int CheckID { getset; }
    public string UploadDate { getset; }
    public string IndividualName { getset; }
    public string CheckNumber { getset; }
    public string TransitNumber { getset; }
    public string DDANumber { getset; }
    public AccountType AccountType { getset; }
    public Decimal CheckAmount { getset; }
    public string ClientTag { getset; }
    public string EntryClass { getset; }
    public DateTime PostingDate { getset; }
    public bool SentToFed { getset; }
    public Return[] ReturnStatus { getset; }
}
Have more questions? Submit a request

Comments