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 Item

GET
https://demo-d.tradovateapi.com/v1/subAccountCheckState/item
GET
/v1/subAccountCheckState/item
1const url = 'https://demo-d.tradovateapi.com/v1/subAccountCheckState/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 "reused": true,
3 "created": "2024-01-15T09:30:00Z",
4 "updated": "2024-01-15T09:30:00Z",
5 "id": 1,
6 "identityAutoCheckAttempts": 1,
7 "identityAutoCheck": "Fail",
8 "identityAutoCheckTransactionId": "string",
9 "journeyApplicationToken": "string",
10 "identityCheck": "Fail",
11 "identityCheckDate": {
12 "year": 1,
13 "month": 1,
14 "day": 1
15 },
16 "identityAutoCheckProvider": "Alloy",
17 "comments": "string"
18}

Fetches SubAccountCheckState entity by id field

Was this page helpful?
Previous

Sub Account Check State Items

Next
Built with

Authentication

AuthorizationBearer

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

Query parameters

idlongRequired

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