Graph Request
Tag: DoGraphRequest
Graph requests can be launched from Ytria automation.
Their result can be stored in a variable or in a text file.
Tag Attributes
Attributes | Attribute Values | Value Description |
---|---|---|
URL | N/A | Request URL (GET will be used) |
UseApp | TRUE / FALSE - Defaults to FALSE (whether to use App session or not, instead of User -- for Elevated/ Role) | N/A |
Name | N/A | Output var name |
FilePath | Output file path (ignored if Name is not empty) | N/A |
HttpHeaders | Optional http headers | semi-colon separated list of Header:Value pairs |
Example Script
<ytriaAutomation Application="sapio365">
<DoGraphRequest Url="https://graph.microsoft.com/v1.0/users/" Name="myVar"/> <!-- Dump to var -->
<echo value="{%myVar%}"/>
<DoGraphRequest Url="https://graph.microsoft.com/v1.0/users/" FilePath="C:\dump.txt" UseApp="True" HttpHeaders="ConsistencyLevel:Eventual"/> <!-- Dump to file, using app session and optional http headers -->
</ytriaAutomation>