Modify Pending Deposit Status

Use the Modify Pending Deposit Status endpoint to either post or return pending direct ACH deposits that are returned by Get Pending Deposits. This endpoint is intended for a custom fraud monitoring and resolution strategy. Consult with Galileo to configure your program appropriately.

For more information on this endpoint see Modifying a pending ACH deposit status in the ACH Endpoints guide.

See Global Response Statuses for status codes that are common across endpoints.

The table below lists status codes that apply to this specific endpoint.

Status CodeCode Description
543-01Provided depositTransactionId doesn't map to any payment
543-02Invalid category type. The valid choices are A=Approve, W=Watch and D=Decline.
543-03Invalid action type. The valid choices are P=Post and R=Return.
543-04Transaction is not in a status that can be posted or returned
543-05Failed to Post transaction
543-06Failed to Return transaction
543-07Ret Code should not be used when posting
543-08Ret Code is required when returning
543-09Invalid Ret Code supplied. Valid Ret Codes: x
543-10Payment successfully updated, but was not successfully marked as reviewed. Please contact client support for more details.
543-11Failed to find transaction by depositTransactionId and or categoryCode. Please confirm both are correct.

Response Example

{
    "status_code": 0,
    "status": "Success",
    "processing_time": 0.443,
    "response_data": {
        "deposit_transaction_id": "75001797",
        "action_type": "P",
        "category_type": "A",
        "category_code": "COF"
    },
    "echo": {
        "provider_transaction_id": "",
        "provider_timestamp": null,
        "transaction_id": "52fa5fc4-beb2-49ad-b719-37d9abd4ec4d"
    },
    "system_timestamp": "2020-07-15 14:55:11"
}
```xml xml
<?xml version="1.0" ?>
<response>
	<status_code>0</status_code>
	<status>Success</status>
	<processing_time>0.037</processing_time>
	<response_data>
		<deposit_transaction_id>75001797</deposit_transaction_id>
		<action_type>P</action_type>
		<category_type>A</category_type>
		<category_code>COF</category_code>
	</response_data>
	<echo>
		<provider_transaction_id/>
		<provider_timestamp/>
		<transaction_id>aa3dbb6b-f298-4037-8f78-3ca86ff1b859</transaction_id>
	</echo>
	<system_timestamp>2020-07-15 14:55:12</system_timestamp>
</response>
Language
Click Try It! to start a request and see the response here!