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

Update Managed Funding Method

POST
https://demo-d.tradovateapi.com/v1/fundTransaction/updatemanagedfundingmethod
POST
/v1/fundTransaction/updatemanagedfundingmethod
1const url = 'https://demo-d.tradovateapi.com/v1/fundTransaction/updatemanagedfundingmethod';
2const options = {
3 method: 'POST',
4 headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
5 body: '{"managedFundingMethodId":1,"nickname":"string"}'
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 "ok": true,
3 "errorText": "string",
4 "managedFundingMethodId": 1
5}
Was this page helpful?
Previous

Wallet Transfer

Next
Built with

Authentication

AuthorizationBearer

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

Request

This endpoint expects an object.
managedFundingMethodIdlongRequired
nicknamestringRequired<=512 characters
bankNamestringOptional<=512 characters
abaRoutingNumberstringOptional<=512 characters
swiftCodestringOptional<=512 characters
customerAccountNumberIBANstringOptional<=512 characters
bsbNumberstringOptional<=512 characters
correspondentBankNamestringOptional<=512 characters
correspondentBankSWIFTstringOptional<=512 characters
otherInstructionsstringOptional<=8192 characters

Response

ManagedFundingMethodResponse
okboolean
errorTextstring<=8192 characters

Non-empty if the request failed

managedFundingMethodIdlong