Skip to content

Commit 50c6bcb

Browse files
committed
Merge remote-tracking branch 'highbeamco/alex/add-received-payment-reprocess-endpoint' into version-bump-1.3.3
2 parents 1a5c60a + 9349cca commit 50c6bcb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

resources/receivedPayments.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ export class ReceivedPayments extends BaseResource {
1818
return this.httpPost<UnitResponse<AchReceivedPayment>>(`/${id}/advance`)
1919
}
2020

21+
public async reprocess(id: string): Promise<UnitResponse<AchReceivedPayment>> {
22+
return this.httpPost<UnitResponse<AchReceivedPayment>>(`/${id}/reprocess`)
23+
}
24+
2125
/**
2226
* @param include
2327
* Optional. A comma-separated list of related resources to include in the response.

0 commit comments

Comments
 (0)