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
      • GETAdmin Alert Signal Dependents
      • GETAdmin Alert Signal Item
      • GETAdmin Alert Signal Items
      • GETAdmin Alert Signal L Dependents
      • GETAdmin Alert Signal List
      • GETAlert Dependents
      • GETAlert Item
      • GETAlert Items
      • GETAlert L Dependents
      • GETAlert Signal Dependents
      • GETAlert Signal Item
      • GETAlert Signal Items
      • GETAlert Signal L Dependents
      • POSTComplete Alert Signal
      • POSTCreate Alert
      • POSTDelete Alert
      • POSTDismiss Alert
      • POSTMark Read Alert Signal
      • POSTModify Alert
      • POSTReset Alert
      • POSTTake Alert Signal Ownership
Support Center
LogoLogo
REST API EndpointsAlerts

Admin Alert Signal Items

GET
https://demo-d.tradovateapi.com/v1/adminAlertSignal/items
GET
/v1/adminAlertSignal/items
1const url = 'https://demo-d.tradovateapi.com/v1/adminAlertSignal/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 "timestamp": "2024-01-15T09:30:00Z",
4 "adminAlertId": 1,
5 "text": "string",
6 "emailSent": true,
7 "subjectId": 1,
8 "id": 1,
9 "relatedToAccountId": 1,
10 "relatedToUserId": 1,
11 "ownedByAdminId": 1,
12 "completed": "2024-01-15T09:30:00Z"
13 }
14]

Fetches multiple AdminAlertSignal entities of id field

Was this page helpful?
Previous

Admin Alert Signal 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

AdminAlertSignal
timestampdatetime
adminAlertIdlong
textstring<=8192 characters
emailSentboolean
subjectIdlong
idlong
relatedToAccountIdlong
relatedToUserIdlong
ownedByAdminIdlong
Owned By...
completeddatetime