For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Support Center
OverviewAPIResources
OverviewAPIResources
  • REST API Endpoints
    • GETGet Timestamp
    • GETO IDC User Info
      • POSTAdd Managed Funding Method
      • POSTApprove Managed Fund Transaction
      • POSTArchive Managed Funding Method
      • GETFund Transaction Dependents
      • GETFund Transaction Item
      • GETFund Transaction Items
      • GETFund Transaction L Dependents
      • GETFund Transaction List
      • POSTIn Transit Fund Transaction
      • GETManaged Funding Method Dependents
      • GETManaged Funding Method Item
      • GETManaged Funding Method Items
      • GETManaged Funding Method L Dependents
      • POSTReject Managed Fund Transaction
      • POSTSubmit Managed Fund Transaction
      • POSTSubmit Shadow Fund Transaction
      • POSTUpdate Managed Funding Method
      • POSTWallet Transfer
Support Center
LogoLogo
REST API EndpointsFunds

Reject Managed Fund Transaction

POST
https://demo-d.tradovateapi.com/v1/fundTransaction/rejectmanagedfundtransaction
POST
/v1/fundTransaction/rejectmanagedfundtransaction
1const url = 'https://demo-d.tradovateapi.com/v1/fundTransaction/rejectmanagedfundtransaction';
2const options = {
3 method: 'POST',
4 headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
5 body: '{"fundTransactionId":1}'
6};
7
8try {
9 const response = await fetch(url, options);
10 const data = await response.json();
11 console.log(data);
12} catch (error) {
13 console.error(error);
14}
200Successful
1{
2 "errorText": "string",
3 "fundTransaction": {
4 "accountId": 1,
5 "timestamp": "2024-01-15T09:30:00Z",
6 "submitterId": 1,
7 "outgoing": true,
8 "fundPaymentType": "ACHR",
9 "fundAmount": 1.1,
10 "fundCurrencyId": 1,
11 "id": 1,
12 "fundDescription": "string",
13 "feePaymentType": "ACHR",
14 "feeAmount": 1.1,
15 "feeCurrencyId": 1,
16 "feeDescription": "string",
17 "bankAccountId": 1,
18 "approved": true,
19 "status": "Approved",
20 "autoApprovalDate": {
21 "year": 1,
22 "month": 1,
23 "day": 1
24 },
25 "suspendReason": "CurrencyConversionRequired",
26 "suspendReasonNotes": "string",
27 "fullBalance": true,
28 "approvalDate": "2024-01-15T09:30:00Z",
29 "submissionSignalId": 1,
30 "achId": 1,
31 "achrSecondCheckResult": "DataUnavailable",
32 "achrSecondCheckTimestamp": "2024-01-15T09:30:00Z",
33 "achrSecondCheckComments": "string",
34 "returnCode": "string",
35 "statementDate": {
36 "year": 1,
37 "month": 1,
38 "day": 1
39 },
40 "managedFundingMethodId": 1,
41 "instructions": "string"
42 }
43}
Was this page helpful?
Previous

Submit Managed Fund Transaction

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Request

This endpoint expects an object.
fundTransactionIdlongRequired

Response

FundTransactionResponse
errorTextstring<=8192 characters

Non-empty if the request failed

fundTransactionobject