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 Item

GET
https://demo-d.tradovateapi.com/v1/managedFundingMethod/item
GET
/v1/managedFundingMethod/item
1const url = 'https://demo-d.tradovateapi.com/v1/managedFundingMethod/item?id=1';
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 "accountId": 1,
3 "timestamp": "2024-01-15T09:30:00Z",
4 "creatorId": 1,
5 "nickname": "string",
6 "archived": true,
7 "id": 1,
8 "bankName": "string",
9 "abaRoutingNumber": "string",
10 "swiftCode": "string",
11 "customerAccountNumberIBAN": "string",
12 "bsbNumber": "string",
13 "correspondentBankName": "string",
14 "correspondentBankSWIFT": "string",
15 "otherInstructions": "string"
16}

Fetches ManagedFundingMethod entity by id field

Was this page helpful?
Previous

Managed Funding Method Items

Next
Built with

Authentication

AuthorizationBearer

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

Query parameters

idlongRequired

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