v1

latestOpenAPI 3.0.02026-07-2640301.0 MB
Zelle Endpoints

zelle/withdraw/transactions

List Zelle withdrawal transactions for the account within a specified date range.

get/zelle/withdraw/transactions

Query parameters

AccountIDstring required

Your account ID

Keystring required

API key for the account

Signaturestring required

Hashed signature for the request

StartDateTimestring required

Start of the date range to filter transactions (e.g. 2024-01-01 or 2024-01-01 00:00:00)

EndDateTimestring required

End of the date range to filter transactions (e.g. 2024-01-31 or 2024-01-31 23:59:59)

Response

Successboolean required

True if the request was successful, false if it failed

ErrorMessagestring required

Contains a description of the error if the request failed

NumberOfRecordsinteger required

Total number of transactions returned

Example response

{
  "Success": true,
  "ZelleTransactions": {
    "0": {
      "TransactionID": "123456",
      "TransactionDateTime": "2024-01-15 10:30:00",
      "Amount": "100.00",
      "Status": "in progress",
      "RecipientName": "John Smith",
      "RecipientEmail": "john.smith@example.com",
      "RecipientPhone": "+12065551234",
      "PriorityType": "STANDARD",
      "ClientReferenceNumber": "REF-001",
      "Notes": "Invoice payment",
      "LastModified": "2024-01-15 10:35:00"
    }
  }
}