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
      • GETAccount Dependents
      • GETAccount Find
      • GETAccount Item
      • GETAccount Items
      • GETAccount L Dependents
      • GETAccount List
      • GETAccount Suggest
      • POSTAcknowledge SSF Risk Disclosure
      • POSTActivate Swap Access
      • GETCash Balance Dependents
      • GETCash Balance Item
      • GETCash Balance Items
      • GETCash Balance L Dependents
      • GETCash Balance List
      • GETCash Balance Log Dependents
      • GETCash Balance Log Item
      • GETCash Balance Log Items
      • GETCash Balance Log L Dependents
      • POSTGet Cash Balance Snapshot
      • GETMargin Snapshot Dependents
      • GETMargin Snapshot Item
      • GETMargin Snapshot Items
      • GETMargin Snapshot L Dependents
      • GETMargin Snapshot List
      • POSTReset Demo Account State
      • GETShadow Account Dependents
      • GETShadow Account Item
      • GETShadow Account Items
      • GETShadow Account L Dependents
      • GETShadow Account Request Dependents
      • GETShadow Account Request Item
      • GETShadow Account Request Items
      • GETShadow Account Request L Dependents
      • GETShadow Account Request List
      • GETTrading Permission Dependents
      • GETTrading Permission Item
      • GETTrading Permission Items
      • GETTrading Permission L Dependents
      • GETTrading Permission List
      • POSTUpdate Futures Disabled
      • POSTUpdate Swap Enabled
Support Center
LogoLogo
REST API EndpointsAccounting

Shadow Account Request Item

GET
https://demo-d.tradovateapi.com/v1/shadowAccountRequest/item
GET
/v1/shadowAccountRequest/item
1const url = 'https://demo-d.tradovateapi.com/v1/shadowAccountRequest/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 "timestamp": "2024-01-15T09:30:00Z",
3 "entityAccountId": 1,
4 "id": 1,
5 "shadowUserId": 1,
6 "initialFunding": 1.1,
7 "outPubSubMessageId": "string",
8 "submittedTimestamp": "2024-01-15T09:30:00Z",
9 "inPubSubMessageId": "string",
10 "decision": "Approved",
11 "decisionNotes": "string",
12 "decisionTimestamp": "2024-01-15T09:30:00Z",
13 "shadowAccountId": 1,
14 "shadowRiskCategoryId": 1,
15 "clientAccountName": "string"
16}

Fetches ShadowAccountRequest entity by id field

Was this page helpful?
Previous

Shadow Account Request Items

Next
Built with

Authentication

AuthorizationBearer

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

Query parameters

idlongRequired

Response

ShadowAccountRequest
timestampdatetime
entityAccountIdlong
idlong
shadowUserIdlong
initialFundingdouble
outPubSubMessageIdstring<=64 characters
submittedTimestampdatetime
inPubSubMessageIdstring<=64 characters
decisionenum
Approved, Denied, Pending
Allowed values:
decisionNotesstring<=8192 characters
decisionTimestampdatetime
shadowAccountIdlong
shadowRiskCategoryIdlong
clientAccountNamestring<=64 characters