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

Take Alert Signal Ownership

POST
https://demo-d.tradovateapi.com/v1/adminAlertSignal/takealertsignalownership
POST
/v1/adminAlertSignal/takealertsignalownership
1const url = 'https://demo-d.tradovateapi.com/v1/adminAlertSignal/takealertsignalownership';
2const options = {
3 method: 'POST',
4 headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
5 body: '{"adminAlertSignalId":1}'
6};
7
8try {
9 const response = await fetch(url, options);
10 const data = await response.json();
11 console.log(data);
12} catch (error) {
13 console.error(error);
14}
200Successful
1{
2 "errorText": "string",
3 "adminAlertSignal": {
4 "timestamp": "2024-01-15T09:30:00Z",
5 "adminAlertId": 1,
6 "text": "string",
7 "emailSent": true,
8 "subjectId": 1,
9 "id": 1,
10 "relatedToAccountId": 1,
11 "relatedToUserId": 1,
12 "ownedByAdminId": 1,
13 "completed": "2024-01-15T09:30:00Z"
14 }
15}

Internal. Can be used by B2B partners to mark an adminAlertSignal entity for further handling.

Was this page helpful?
Previous

Agreement Document Dependents

Next
Built with

Authentication

AuthorizationBearer

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

Request

This endpoint expects an object.
adminAlertSignalIdlongRequired

Response

AdminAlertSignalResponse
errorTextstring<=8192 characters

Non-empty if the request failed

adminAlertSignalobject