Api session items triggers: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| (31 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
API Endpoint: /api/session/items/triggers/ | |||
Edit items with | Edit items with events described at [[Api session event editor trigger]]. | ||
Default Query: | Default Query: | ||
| Line 8: | Line 8: | ||
<syntaxhighlight lang="text" copy>[ { | <syntaxhighlight lang="text" copy>[ { | ||
"active" : true, | "active" : true, | ||
"calcTimeMS" : | "calcTimeMS" : 14, | ||
"id" : 1, | "id" : 1, | ||
"method" : "GET", | "method" : "GET", | ||
| Line 16: | Line 16: | ||
"type" : "TQL", | "type" : "TQL", | ||
"url" : "https://development.tygron.com/api/session/hello", | "url" : "https://development.tygron.com/api/session/hello", | ||
"version" : | "version" : 13, | ||
"warnings" : "" | "warnings" : "" | ||
}, { | }, { | ||
| Line 34: | Line 34: | ||
version=100: | version=100: | ||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/triggers/?version=100&token=API_TOKEN</syntaxhighlight> | <syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/triggers/?version=100&token=API_TOKEN</syntaxhighlight> | ||
== | ==Get Queries== | ||
attributes: | |||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/triggers/attributes/?token=API_TOKEN</syntaxhighlight> | |||
max version: | max version: | ||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/triggers/version/?token=API_TOKEN</syntaxhighlight> | <syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/triggers/version/?token=API_TOKEN</syntaxhighlight> | ||
count: | |||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/triggers/ | <syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/triggers/count/?token=API_TOKEN</syntaxhighlight> | ||
==Formats== | ==Formats== | ||
HTML: | HTML: | ||
| Line 54: | Line 56: | ||
ZIPSMILE: | ZIPSMILE: | ||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/triggers/?f=ZIPSMILE&token=API_TOKEN</syntaxhighlight> | <syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/triggers/?f=ZIPSMILE&token=API_TOKEN</syntaxhighlight> | ||
==Api Model Method== | |||
API Enumeration description of Method | |||
{|class=wikitable | |||
!Name | |||
!Description | |||
|- | |||
| GET | |||
| | |||
|- | |||
| POST | |||
| | |||
|} | |||
==Api Model Timing== | |||
API Enumeration description of Timing | |||
{|class=wikitable | |||
!Name | |||
!Description | |||
|- | |||
| BEFORE | |||
| | |||
|- | |||
| AFTER | |||
| | |||
|} | |||
==Api Model Trigger== | |||
API Model description of Trigger | |||
{|class=wikitable | |||
!Name | |||
!Type | |||
!Description | |||
|- | |||
| active | |||
| boolean | |||
| | |||
|- | |||
| calcTimeMS | |||
| long | |||
| | |||
|- | |||
| id | |||
| int | |||
| | |||
|- | |||
| method | |||
| Method | |||
| | |||
|- | |||
| name | |||
| String | |||
| | |||
|- | |||
| timeoutMS | |||
| int | |||
| | |||
|- | |||
| timing | |||
| Timing | |||
| | |||
|- | |||
| type | |||
| Type | |||
| | |||
|- | |||
| url | |||
| String | |||
| | |||
|- | |||
| version | |||
| int | |||
| | |||
|- | |||
| warnings | |||
| String | |||
| | |||
|} | |||
==Api Model Type (Trigger)== | |||
API Enumeration description of Type | |||
{|class=wikitable | |||
!Name | |||
!Description | |||
|- | |||
| TQL | |||
| | |||
|- | |||
| EVENT | |||
| | |||
|} | |||
{{article end|seealso=*[[Api Content Items]] | {{article end|seealso=*[[Api Content Items]] | ||
*[[Api session event editor trigger]] | *[[Api session event editor trigger]] | ||
| Line 59: | Line 156: | ||
[[Category:API]] | [[Category:API]] | ||
[[Category:Items]] | |||
Latest revision as of 10:01, 13 July 2026
API Endpoint: /api/session/items/triggers/
Edit items with events described at Api session event editor trigger.
Default Query:
https://engine.tygron.com/api/session/items/triggers/?f=JSON&token=API_TOKENExample Response:
[ {
"active" : true,
"calcTimeMS" : 14,
"id" : 1,
"method" : "GET",
"name" : "Before",
"timeoutMS" : 10000,
"timing" : "BEFORE",
"type" : "TQL",
"url" : "https://development.tygron.com/api/session/hello",
"version" : 13,
"warnings" : ""
}, {
"active" : true,
"calcTimeMS" : 0,
"id" : 2,
"method" : "GET",
"name" : "After",
"timeoutMS" : 10000,
"timing" : "AFTER",
"type" : "TQL",
"url" : "https://api.powerbi.com/v1.0/myorg/groups/%7BgroupId%7D/datasets/%7BdatasetId%7D/refreshes",
"version" : 4,
"warnings" : "Warning: "
} ]Limit Queries
version=100:
https://engine.tygron.com/api/session/items/triggers/?version=100&token=API_TOKENGet Queries
attributes:
https://engine.tygron.com/api/session/items/triggers/attributes/?token=API_TOKENmax version:
https://engine.tygron.com/api/session/items/triggers/version/?token=API_TOKENcount:
https://engine.tygron.com/api/session/items/triggers/count/?token=API_TOKENFormats
HTML:
https://engine.tygron.com/api/session/items/triggers/?f=HTML&token=API_TOKENJSON:
https://engine.tygron.com/api/session/items/triggers/?f=JSON&token=API_TOKENCSV:
https://engine.tygron.com/api/session/items/triggers/?f=CSV&token=API_TOKENSSV:
https://engine.tygron.com/api/session/items/triggers/?f=SSV&token=API_TOKENSMILE:
https://engine.tygron.com/api/session/items/triggers/?f=SMILE&token=API_TOKENZIPJSON:
https://engine.tygron.com/api/session/items/triggers/?f=ZIPJSON&token=API_TOKENZIPSMILE:
https://engine.tygron.com/api/session/items/triggers/?f=ZIPSMILE&token=API_TOKENApi Model Method
API Enumeration description of Method
| Name | Description |
|---|---|
| GET | |
| POST |
Api Model Timing
API Enumeration description of Timing
| Name | Description |
|---|---|
| BEFORE | |
| AFTER |
Api Model Trigger
API Model description of Trigger
| Name | Type | Description |
|---|---|---|
| active | boolean | |
| calcTimeMS | long | |
| id | int | |
| method | Method | |
| name | String | |
| timeoutMS | int | |
| timing | Timing | |
| type | Type | |
| url | String | |
| version | int | |
| warnings | String |
Api Model Type (Trigger)
API Enumeration description of Type
| Name | Description |
|---|---|
| TQL | |
| EVENT |