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

Managed Funding Method Items

GET
https://demo-d.tradovateapi.com/v1/managedFundingMethod/items
GET
/v1/managedFundingMethod/items
1const url = 'https://demo-d.tradovateapi.com/v1/managedFundingMethod/items?ids=%5B1%5D';
2const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
3
4try {
5 const response = await fetch(url, options);
6 const data = await response.json();
7 console.log(data);
8} catch (error) {
9 console.error(error);
10}
200Retrieved
1[
2 {
3 "accountId": 1,
4 "timestamp": "2024-01-15T09:30:00Z",
5 "creatorId": 1,
6 "nickname": "string",
7 "archived": true,
8 "id": 1,
9 "bankName": "string",
10 "abaRoutingNumber": "string",
11 "swiftCode": "string",
12 "customerAccountNumberIBAN": "string",
13 "bsbNumber": "string",
14 "correspondentBankName": "string",
15 "correspondentBankSWIFT": "string",
16 "otherInstructions": "string"
17 }
18]

Fetches multiple ManagedFundingMethod entities of id field

Was this page helpful?
Previous

Managed Funding Method L Dependents

Next
Built with

Authentication

AuthorizationBearer

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

Query parameters

idslist of longsRequired

Response

ManagedFundingMethod
accountIdlong
timestampdatetime
creatorIdlong
nicknamestring<=512 characters
archivedboolean
idlong
bankNamestring<=512 characters
abaRoutingNumberstring<=512 characters
swiftCodestring<=512 characters
customerAccountNumberIBANstring<=512 characters
bsbNumberstring<=512 characters
correspondentBankNamestring<=512 characters
correspondentBankSWIFTstring<=512 characters
otherInstructionsstring<=8192 characters