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
      • GETCorporate Applicant Dependents
      • GETCorporate Applicant Item
      • GETCorporate Applicant Items
      • GETCorporate Applicant L Dependents
      • GETCustomer Application Check State Dependents
      • GETCustomer Application Check State Item
      • GETCustomer Application Check State Items
      • GETCustomer Application Check State L Dependents
      • GETCustomer Application Signing State Dependents
      • GETCustomer Application Signing State Item
      • GETCustomer Application Signing State Items
      • GETCustomer Application Signing State L Dependents
      • POSTDownload Sub Account Request Preview
      • POSTDownload User Document Preview
      • POSTGet Agreement Document
      • POSTGet Current Annual Review Info
      • POSTGet Localized Agreement Document
      • POSTGet User Signed Document
      • GETIndividual Applicant Dependents
      • GETIndividual Applicant Item
      • GETIndividual Applicant Items
      • GETIndividual Applicant L Dependents
      • GETJoint Applicant Dependents
      • GETJoint Applicant Item
      • GETJoint Applicant Items
      • GETJoint Applicant L Dependents
      • GETSub Account Check State Dependents
      • GETSub Account Check State Item
      • GETSub Account Check State Items
      • GETSub Account Check State L Dependents
      • POSTSubmit Annual Review
      • POSTUpdate Contact Info
      • POSTUpdate Contact Info Name
Support Center
LogoLogo
REST API EndpointsPersonal Info

Sub Account Check State L Dependents

GET
https://demo-d.tradovateapi.com/v1/subAccountCheckState/ldeps
GET
/v1/subAccountCheckState/ldeps
1const url = 'https://demo-d.tradovateapi.com/v1/subAccountCheckState/ldeps?masterids=%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 "reused": true,
4 "created": "2024-01-15T09:30:00Z",
5 "updated": "2024-01-15T09:30:00Z",
6 "id": 1,
7 "identityAutoCheckAttempts": 1,
8 "identityAutoCheck": "Fail",
9 "identityAutoCheckTransactionId": "string",
10 "journeyApplicationToken": "string",
11 "identityCheck": "Fail",
12 "identityCheckDate": {
13 "year": 1,
14 "month": 1,
15 "day": 1
16 },
17 "identityAutoCheckProvider": "Alloy",
18 "comments": "string"
19 }
20]
Fetches all SubAccountCheckState entities associated with multiple SubAccountRequest entities
Was this page helpful?
Previous

Submit Annual Review

Next
Built with

Authentication

AuthorizationBearer

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

Query parameters

masteridslist of longsRequired
List of SubAccountRequest entity IDs

Response

SubAccountCheckState
reusedboolean
createddatetime
updateddatetime
idlong
identityAutoCheckAttemptsinteger>=0
identityAutoCheckenum
Fail, Pass, ReviewNeeded
Allowed values:
identityAutoCheckTransactionIdstring<=64 characters
journeyApplicationTokenstring<=64 characters
identityCheckenum
Fail, Pass, ReviewNeeded
Allowed values:
identityCheckDateobject
identityAutoCheckProviderenum
Alloy, AlloyParallelDomIntl, AlloyParallelDomOnly, EVS, LXNX
Allowed values:
commentsstring<=8388608 characters