Pending Transfers
This subresource enables user to find pending fund transfers for the investor's account.
Operation: GET
URL: https://api.lendingclub.com/api/investor/[version]/accounts/[Investor Id]/funds/pending
URL Parameters: Investor Id — This can be obtained from the Account Summary section on LendingClub website when a user is logged in.
Query Parameters: None.
Supported Formats: JSON, XML, CSV
Request/ Response data:
Name | Type | Nullable | Description |
---|---|---|---|
transferId | integer | No | Transfer transaction Id |
transferDate | Date | No | Transfer Scheduled Date |
amount | BigDecimal | No | Transfer amount |
sourceAccount | String | No | Transfer Source Account |
status | String | No | Status of the Scheduled Transfer |
frequency | String | No | Frequency of Fund Transfer. Valid values are: LOAD_NOW, LOAD_ONCE, LOAD_WEEKLY, LOAD_BIWEEKLY, LOAD_ON_DAY_1_AND_16, LOAD_MONTHLY |
endDate | Date | Yes | Recurring transfer end date or null is returned in case of one time transfers |
operation | String | No | Type of transfer. Valid Values: ADD_FUNDS or WITHDRAW_FUNDS |
cancellable | Boolean | No | Returns boolean indicating whether this transaction can be cancelled or not. |
Response: JSON —
{ "transfers": [ { "transferId": 34074842 "transferDate": "2015-01-23T00:00:00.000-0800" "amount": 100 "sourceAccount": "ING Direct" "status": "Scheduled" "frequency": "Weekly" "endDate": null "operation": "ADD_FUNDS" "cancellable": "true" }, { "transferId": 1004429329 "transferDate": "2015-01-06T00:00:00.000-0800" "amount": 6.5 "sourceAccount": "ING Direct" "status": "Processing" "frequency": "One Time" "endDate": null "operation": "ADD_FUNDS" "cancellable": "false" }, { "transferId": 1005720609 "transferDate": "2015-01-14T00:00:00.000-0800" "amount": 6.5 "sourceAccount": "ING Direct" "status": "Processing" "frequency": "One Time" "endDate": null "operation": "ADD_FUNDS" "cancellable": "false" } ] }
Response: XML —
100.0 Weekly ADD_FUNDS ING Direct Scheduled 2015-01-23T00:00:00.000-0800 34074842 true 6.5 One Time ADD_FUNDS ING Direct Processing 2015-01-06T00:00:00.000-0800 1004429329 false 6.5 One Time ADD_FUNDS ING Direct Processing 2015-01-14T00:00:00.000-0800 1005720609 false
Response: CSV —
"TRANSFER_ID","TRANSFER_DATE","AMOUNT","SOURCE_ACCOUNT","STATUS","FREQUENCY","END_DATE","OPERATION","CANCELLABLE" "34074842","2015-01-23T00:00:00.000-0800","100.0","ING Direct","Scheduled","Weekly","","ADD_FUNDS","true" "1004429329","2015-01-06T00:00:00.000-0800","6.5","ING Direct","Processing","One Time","","ADD_FUNDS","false" "1005720609","2015-01-14T00:00:00.000-0800","6.5","ING Direct","Processing","One Time","","ADD_FUNDS","false"