productivity
Microsoft Education Lua API for KosmoKrator Agents
Agent-facing Lua documentation and function reference for the Microsoft Education KosmoKrator integration.Lua Namespace
Agents call this integration through app.integrations.microsoft_education.*.
Use lua_read_doc("integrations.microsoft-education") inside KosmoKrator to discover the same reference at runtime.
Call Lua from the Headless CLI
Use kosmo integrations:lua when a shell script, CI job, cron job, or another coding CLI should run a deterministic
Microsoft Education workflow without starting an interactive agent session.
kosmo integrations:lua --eval 'dump(app.integrations.microsoft_education.get({top = "example_top", skip = "example_skip", search = "example_search", filter = "example_filter", orderby = "example_orderby", select = "example_select", expand = "example_expand", count = true}))' --json kosmo integrations:lua --eval 'print(docs.read("microsoft-education"))' --json
kosmo integrations:lua --eval 'print(docs.read("microsoft-education.get"))' --json Workflow file
Put repeatable logic in a Lua file, then execute it with JSON output for the calling process.
local microsoft_education = app.integrations.microsoft_education
local result = microsoft_education.get({top = "example_top", skip = "example_skip", search = "example_search", filter = "example_filter", orderby = "example_orderby", select = "example_select", expand = "example_expand", count = true})
dump(result) kosmo integrations:lua workflow.lua --json
kosmo integrations:lua workflow.lua --force --json integrations:lua exposes app.integrations.microsoft_education, app.mcp.*, docs.*, json.*, and regex.*. Use app.integrations.microsoft_education.default.* or app.integrations.microsoft_education.work.* when you configured named credential accounts.
MCP-only Lua
If the script only needs configured MCP servers and does not need Microsoft Education, use the narrower mcp:lua command.
# Use mcp:lua for MCP-only scripts; use integrations:lua for this integration namespace.
kosmo mcp:lua --eval 'dump(mcp.servers())' --json Agent-Facing Lua Docs
This is the rendered version of the full Lua documentation exposed to agents when they inspect the integration namespace.
Microsoft Education
Namespace: microsoft-education
This integration exposes Microsoft Education operations from Microsoft Graph v1.0 for agents that need to inspect or manage schools, classes, education users, assignments, submissions, rubrics, assignment categories, outcomes, and learning resources.
Source Coverage
- Source OpenAPI:
https://raw.githubusercontent.com/microsoftgraph/msgraph-metadata/master/openapi/v1.0/openapi.yaml - Documentation:
https://learn.microsoft.com/en-us/graph/api/resources/education-overview?view=graph-rest-1.0 - Generated operations:
414 - Included path families:
/education
Authentication
Configure access_token with a Microsoft Graph OAuth token. Use least-privilege permissions for the operation being called, such as EduRoster.ReadWrite.All, EduAssignments.ReadWrite.All, EduAdministration.ReadWrite.All, or related Microsoft Graph scopes.
Usage Notes
- Tool parameters use snake_case. For example, Graph path parameter
user-idbecomesuser_id. - OData options are exposed as
top,skip,search,filter,orderby,select,expand, andcount. - Advanced queries may require
consistency_level = "eventual"and may also requirecount = true. - Conditional update and delete operations can pass
if_matchfor the Microsoft GraphIf-Matchheader. - Request bodies are passed as
bodyobjects and should match the official Microsoft Graph schema for the endpoint.
Example
local classes = tools.microsoft_education_education_list_classes({
top = 10,
select = "id,displayName,mailNickname",
consistency_level = "eventual"
})Raw agent markdown
# Microsoft Education
Namespace: `microsoft-education`
This integration exposes Microsoft Education operations from Microsoft Graph v1.0 for agents that need to inspect or manage schools, classes, education users, assignments, submissions, rubrics, assignment categories, outcomes, and learning resources.
## Source Coverage
- Source OpenAPI: `https://raw.githubusercontent.com/microsoftgraph/msgraph-metadata/master/openapi/v1.0/openapi.yaml`
- Documentation: `https://learn.microsoft.com/en-us/graph/api/resources/education-overview?view=graph-rest-1.0`
- Generated operations: `414`
- Included path families: `/education`
## Authentication
Configure `access_token` with a Microsoft Graph OAuth token. Use least-privilege permissions for the operation being called, such as `EduRoster.ReadWrite.All`, `EduAssignments.ReadWrite.All`, `EduAdministration.ReadWrite.All`, or related Microsoft Graph scopes.
## Usage Notes
- Tool parameters use snake_case. For example, Graph path parameter `user-id` becomes `user_id`.
- OData options are exposed as `top`, `skip`, `search`, `filter`, `orderby`, `select`, `expand`, and `count`.
- Advanced queries may require `consistency_level = "eventual"` and may also require `count = true`.
- Conditional update and delete operations can pass `if_match` for the Microsoft Graph `If-Match` header.
- Request bodies are passed as `body` objects and should match the official Microsoft Graph schema for the endpoint.
## Example
```lua
local classes = tools.microsoft_education_education_list_classes({
top = 10,
select = "id,displayName,mailNickname",
consistency_level = "eventual"
})
``` local result = app.integrations.microsoft_education.get({top = "example_top", skip = "example_skip", search = "example_search", filter = "example_filter", orderby = "example_orderby", select = "example_select", expand = "example_expand", count = true})
print(result) Functions
get Read
Get education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education.
- Lua path
app.integrations.microsoft_education.get- Full name
microsoft-education.microsoft_education_education_education_root_get_education_root
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update Write
Update education\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education.
- Lua path
app.integrations.microsoft_education.update- Full name
microsoft-education.microsoft_education_education_education_root_update_education_root
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
list_educationclasses Read
List educationClasses\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes.
- Lua path
app.integrations.microsoft_education.list_educationclasses- Full name
microsoft-education.microsoft_education_education_list_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_educationclass Write
Create educationClass\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes.
- Lua path
app.integrations.microsoft_education.create_educationclass- Full name
microsoft-education.microsoft_education_education_create_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_get_count_fe5a
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_function_delta Read
Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/delta().
- Lua path
app.integrations.microsoft_education.invoke_function_delta- Full name
microsoft-education.microsoft_education_education_classes_delta
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_educationclass Write
Delete educationClass\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}.
- Lua path
app.integrations.microsoft_education.delete_educationclass- Full name
microsoft-education.microsoft_education_education_delete_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationclass Read
Get educationClass\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}.
- Lua path
app.integrations.microsoft_education.get_educationclass- Full name
microsoft-education.microsoft_education_education_get_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_educationclass Write
Update educationClass\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education/classes/{educationClass-id}.
- Lua path
app.integrations.microsoft_education.update_educationclass- Full name
microsoft-education.microsoft_education_education_update_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
list_assignmentcategories Read
List assignmentCategories\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignmentCategories.
- Lua path
app.integrations.microsoft_education.list_assignmentcategories- Full name
microsoft-education.microsoft_education_education_classes_list_assignment_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_educationcategory Write
Create educationCategory\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignmentCategories.
- Lua path
app.integrations.microsoft_education.create_educationcategory- Full name
microsoft-education.microsoft_education_education_classes_create_assignment_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignmentCategories/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_assignment_categories_get_count_8570
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_function_delta Read
Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignmentCategories/delta().
- Lua path
app.integrations.microsoft_education.invoke_function_delta- Full name
microsoft-education.microsoft_education_education_classes_education_class_assignment_categories_delta
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_educationcategory Write
Delete educationCategory\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}.
- Lua path
app.integrations.microsoft_education.delete_educationcategory- Full name
microsoft-education.microsoft_education_education_classes_delete_assignment_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_category_id | string | yes | Path parameter `educationCategory-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationcategory Read
Get educationCategory\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}.
- Lua path
app.integrations.microsoft_education.get_educationcategory- Full name
microsoft-education.microsoft_education_education_classes_get_assignment_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_category_id | string | yes | Path parameter `educationCategory-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationassignmentdefaults Read
Get educationAssignmentDefaults\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignmentDefaults.
- Lua path
app.integrations.microsoft_education.get_educationassignmentdefaults- Full name
microsoft-education.microsoft_education_education_classes_get_assignment_defaults
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_educationassignmentdefaults Write
Update educationAssignmentDefaults\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education/classes/{educationClass-id}/assignmentDefaults.
- Lua path
app.integrations.microsoft_education.update_educationassignmentdefaults- Full name
microsoft-education.microsoft_education_education_classes_update_assignment_defaults
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_assignmentsettings_from Read
Get assignmentSettings from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignmentSettings.
- Lua path
app.integrations.microsoft_education.get_assignmentsettings_from- Full name
microsoft-education.microsoft_education_education_classes_get_assignment_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_educationassignmentsettings Write
Update educationAssignmentSettings\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education/classes/{educationClass-id}/assignmentSettings.
- Lua path
app.integrations.microsoft_education.update_educationassignmentsettings- Full name
microsoft-education.microsoft_education_education_classes_update_assignment_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_defaultgradingscheme_from Read
Get defaultGradingScheme from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignmentSettings/defaultGradingScheme.
- Lua path
app.integrations.microsoft_education.get_defaultgradingscheme_from- Full name
microsoft-education.microsoft_education_education_classes_assignment_settings_get_default_grading_scheme
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_gradingcategories_from Read
Get gradingCategories from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignmentSettings/gradingCategories.
- Lua path
app.integrations.microsoft_education.get_gradingcategories_from- Full name
microsoft-education.microsoft_education_education_classes_assignment_settings_list_grading_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignmentSettings/gradingCategories/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_assignment_settings_grading_categories_get_count_c354
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_gradingcategories_from Read
Get gradingCategories from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}.
- Lua path
app.integrations.microsoft_education.get_gradingcategories_from- Full name
microsoft-education.microsoft_education_education_classes_assignment_settings_get_grading_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_grading_category_id | string | yes | Path parameter `educationGradingCategory-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_gradingcategory Write
Update gradingCategory\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}.
- Lua path
app.integrations.microsoft_education.update_gradingcategory- Full name
microsoft-education.microsoft_education_education_classes_assignment_settings_update_grading_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_grading_category_id | string | yes | Path parameter `educationGradingCategory-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_educationgradingscheme Read
Get educationGradingScheme\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignmentSettings/gradingSchemes.
- Lua path
app.integrations.microsoft_education.get_educationgradingscheme- Full name
microsoft-education.microsoft_education_education_classes_assignment_settings_list_grading_schemes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_educationgradingscheme Write
Create educationGradingScheme\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignmentSettings/gradingSchemes.
- Lua path
app.integrations.microsoft_education.create_educationgradingscheme- Full name
microsoft-education.microsoft_education_education_classes_assignment_settings_create_grading_schemes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignmentSettings/gradingSchemes/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_assignment_settings_grading_schemes_get_count_c040
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_educationgradingscheme Write
Delete educationGradingScheme\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/assignmentSettings/gradingSchemes/{educationGradingScheme-id}.
- Lua path
app.integrations.microsoft_education.delete_educationgradingscheme- Full name
microsoft-education.microsoft_education_education_classes_assignment_settings_delete_grading_schemes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_grading_scheme_id | string | yes | Path parameter `educationGradingScheme-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationgradingscheme Read
Get educationGradingScheme\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignmentSettings/gradingSchemes/{educationGradingScheme-id}.
- Lua path
app.integrations.microsoft_education.get_educationgradingscheme- Full name
microsoft-education.microsoft_education_education_classes_assignment_settings_get_grading_schemes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_grading_scheme_id | string | yes | Path parameter `educationGradingScheme-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_class_assignments Read
List class assignments\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments.
- Lua path
app.integrations.microsoft_education.list_class_assignments- Full name
microsoft-education.microsoft_education_education_classes_list_assignments
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_educationassignment Write
Create educationAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments.
- Lua path
app.integrations.microsoft_education.create_educationassignment- Full name
microsoft-education.microsoft_education_education_classes_create_assignments
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_assignments_get_count_a470
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_function_delta Read
Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/delta().
- Lua path
app.integrations.microsoft_education.invoke_function_delta- Full name
microsoft-education.microsoft_education_education_classes_education_class_assignments_delta
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_educationassignment Write
Delete educationAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/assignments/{educationAssignment-id}.
- Lua path
app.integrations.microsoft_education.delete_educationassignment- Full name
microsoft-education.microsoft_education_education_classes_delete_assignments
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationassignment Read
Get educationAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}.
- Lua path
app.integrations.microsoft_education.get_educationassignment- Full name
microsoft-education.microsoft_education_education_classes_get_assignments
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_educationassignment Write
Update educationassignment\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education/classes/{educationClass-id}/assignments/{educationAssignment-id}.
- Lua path
app.integrations.microsoft_education.update_educationassignment- Full name
microsoft-education.microsoft_education_education_classes_update_assignments
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
invoke_action_activate Read
Invoke action activate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/activate.
- Lua path
app.integrations.microsoft_education.invoke_action_activate- Full name
microsoft-education.microsoft_education_education_classes_education_class_assignments_education_assignment_activate
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_categories Read
List categories\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories.
- Lua path
app.integrations.microsoft_education.list_categories- Full name
microsoft-education.microsoft_education_education_classes_assignments_list_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_educationcategories Write
Create educationCategories\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories.
- Lua path
app.integrations.microsoft_education.create_educationcategories- Full name
microsoft-education.microsoft_education_education_classes_assignments_create_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_assignments_categories_get_count_639a
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
remove_educationcategory Write
Remove educationCategory\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/$ref.
- Lua path
app.integrations.microsoft_education.remove_educationcategory- Full name
microsoft-education.microsoft_education_education_classes_assignments_delete_ref_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_categories Read
List categories\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/$ref.
- Lua path
app.integrations.microsoft_education.list_categories- Full name
microsoft-education.microsoft_education_education_classes_assignments_list_ref_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_educationcategories Write
Create educationCategories\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/$ref.
- Lua path
app.integrations.microsoft_education.create_educationcategories- Full name
microsoft-education.microsoft_education_education_classes_assignments_create_ref_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
invoke_function_delta Read
Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/delta().
- Lua path
app.integrations.microsoft_education.invoke_function_delta- Full name
microsoft-education.microsoft_education_education_classes_education_class_assignments_education_assignment_categories_delta
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
remove_educationcategory Write
Remove educationCategory\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}/$ref.
- Lua path
app.integrations.microsoft_education.remove_educationcategory- Full name
microsoft-education.microsoft_education_education_classes_assignments_categories_delete_ref_education_category
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_category_id | string | yes | Path parameter `educationCategory-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_deactivate Read
Invoke action deactivate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/deactivate.
- Lua path
app.integrations.microsoft_education.invoke_action_deactivate- Full name
microsoft-education.microsoft_education_education_classes_education_class_assignments_education_assignment_deactivate
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_gradingcategory_from Read
Get gradingCategory from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/gradingCategory.
- Lua path
app.integrations.microsoft_education.get_gradingcategory_from- Full name
microsoft-education.microsoft_education_education_classes_assignments_get_grading_category
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_gradingscheme_from Read
Get gradingScheme from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/gradingScheme.
- Lua path
app.integrations.microsoft_education.get_gradingscheme_from- Full name
microsoft-education.microsoft_education_education_classes_assignments_get_grading_scheme
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_publish Read
Invoke action publish\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/publish.
- Lua path
app.integrations.microsoft_education.invoke_action_publish- Full name
microsoft-education.microsoft_education_education_classes_education_class_assignments_education_assignment_publish
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_assignment_resources Read
List assignment resources\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources.
- Lua path
app.integrations.microsoft_education.list_assignment_resources- Full name
microsoft-education.microsoft_education_education_classes_assignments_list_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_educationassignmentresource Write
Create educationAssignmentResource\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources.
- Lua path
app.integrations.microsoft_education.create_educationassignmentresource- Full name
microsoft-education.microsoft_education_education_classes_assignments_create_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_assignments_resources_get_count_f57b
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_educationassignmentresource Write
Delete educationAssignmentResource\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}.
- Lua path
app.integrations.microsoft_education.delete_educationassignmentresource- Full name
microsoft-education.microsoft_education_education_classes_assignments_delete_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_assignment_resource_id | string | yes | Path parameter `educationAssignmentResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationassignmentresource Read
Get educationAssignmentResource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}.
- Lua path
app.integrations.microsoft_education.get_educationassignmentresource- Full name
microsoft-education.microsoft_education_education_classes_assignments_get_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_assignment_resource_id | string | yes | Path parameter `educationAssignmentResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_dependentresources Read
List dependentResources\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources.
- Lua path
app.integrations.microsoft_education.list_dependentresources- Full name
microsoft-education.microsoft_education_education_classes_assignments_resources_list_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_assignment_resource_id | string | yes | Path parameter `educationAssignmentResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_assignments_resources_dependent_resources_get_count_618c
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_assignment_resource_id | string | yes | Path parameter `educationAssignmentResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_classes_assignments_resources_get_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_assignment_resource_id | string | yes | Path parameter `educationAssignmentResource-id`. |
education_assignment_resource_id1 | string | yes | Path parameter `educationAssignmentResource-id1`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_educationrubric_from_educationassignment Write
Delete educationRubric from educationAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric.
- Lua path
app.integrations.microsoft_education.delete_educationrubric_from_educationassignment- Full name
microsoft-education.microsoft_education_education_classes_assignments_delete_rubric
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationrubric_attached_educationassignment Read
Get educationRubric attached to educationAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric.
- Lua path
app.integrations.microsoft_education.get_educationrubric_attached_educationassignment- Full name
microsoft-education.microsoft_education_education_classes_assignments_get_rubric
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
attach_educationrubric_assignment Write
Attach educationRubric to an assignment\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric.
- Lua path
app.integrations.microsoft_education.attach_educationrubric_assignment- Full name
microsoft-education.microsoft_education_education_classes_assignments_update_rubric
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
delete_educationrubric_from_educationassignment Write
Delete educationRubric from educationAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref.
- Lua path
app.integrations.microsoft_education.delete_educationrubric_from_educationassignment- Full name
microsoft-education.microsoft_education_education_classes_assignments_delete_ref_rubric
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationrubric_attached_educationassignment Read
Get educationRubric attached to educationAssignment\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref.
- Lua path
app.integrations.microsoft_education.get_educationrubric_attached_educationassignment- Full name
microsoft-education.microsoft_education_education_classes_assignments_get_ref_rubric
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
attach_educationrubric_assignment Write
Attach educationRubric to an assignment\n\nOfficial Microsoft Graph v1.0 endpoint: PUT /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref.
- Lua path
app.integrations.microsoft_education.attach_educationrubric_assignment- Full name
microsoft-education.microsoft_education_education_classes_assignments_update_ref_rubric
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
invoke_action_setupfeedbackresourcesfolder Read
Invoke action setUpFeedbackResourcesFolder\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder.
- Lua path
app.integrations.microsoft_education.invoke_action_setupfeedbackresourcesfolder- Full name
microsoft-education.microsoft_education_education_classes_education_class_assignments_education_assignment_set_up_feedback_resources_folder
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_setupresourcesfolder Read
Invoke action setUpResourcesFolder\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/setUpResourcesFolder.
- Lua path
app.integrations.microsoft_education.invoke_action_setupresourcesfolder- Full name
microsoft-education.microsoft_education_education_classes_education_class_assignments_education_assignment_set_up_resources_folder
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_submissions Read
List submissions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions.
- Lua path
app.integrations.microsoft_education.list_submissions- Full name
microsoft-education.microsoft_education_education_classes_assignments_list_submissions
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_get_count_231f
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationsubmission Read
Get educationSubmission\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}.
- Lua path
app.integrations.microsoft_education.get_educationsubmission- Full name
microsoft-education.microsoft_education_education_classes_assignments_get_submissions
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_excuse Read
Invoke action excuse\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/excuse.
- Lua path
app.integrations.microsoft_education.invoke_action_excuse- Full name
microsoft-education.microsoft_education_education_classes_education_class_assignments_education_assignment_submissions_education_submission_excuse
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_outcomes Read
List outcomes\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes.
- Lua path
app.integrations.microsoft_education.list_outcomes- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_list_outcomes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_educationfeedbackresourceoutcome Write
Create educationFeedbackResourceOutcome\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes.
- Lua path
app.integrations.microsoft_education.create_educationfeedbackresourceoutcome- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_create_outcomes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_outcomes_get_count_2ffd
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_educationfeedbackresourceoutcome Write
Delete educationFeedbackResourceOutcome\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}.
- Lua path
app.integrations.microsoft_education.delete_educationfeedbackresourceoutcome- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_delete_outcomes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_outcome_id | string | yes | Path parameter `educationOutcome-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_outcomes_from Read
Get outcomes from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}.
- Lua path
app.integrations.microsoft_education.get_outcomes_from- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_get_outcomes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_outcome_id | string | yes | Path parameter `educationOutcome-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_educationoutcome Write
Update educationOutcome\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}.
- Lua path
app.integrations.microsoft_education.update_educationoutcome- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_update_outcomes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_outcome_id | string | yes | Path parameter `educationOutcome-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
invoke_action_reassign Read
Invoke action reassign\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign.
- Lua path
app.integrations.microsoft_education.invoke_action_reassign- Full name
microsoft-education.microsoft_education_education_classes_education_class_assignments_education_assignment_submissions_education_submission_reassign
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_submission_resources Read
List submission resources\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources.
- Lua path
app.integrations.microsoft_education.list_submission_resources- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_list_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_educationsubmissionresource Write
Create educationSubmissionResource\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources.
- Lua path
app.integrations.microsoft_education.create_educationsubmissionresource- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_create_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_resources_get_count_3e92
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_educationsubmissionresource Write
Delete educationSubmissionResource\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}.
- Lua path
app.integrations.microsoft_education.delete_educationsubmissionresource- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_delete_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationsubmissionresource Read
Get educationSubmissionResource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}.
- Lua path
app.integrations.microsoft_education.get_educationsubmissionresource- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_get_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_dependentresources Read
List dependentResources\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources.
- Lua path
app.integrations.microsoft_education.list_dependentresources- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_resources_list_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_resources_dependent_resources_get_count_7cb6
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_resources_get_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
education_submission_resource_id1 | string | yes | Path parameter `educationSubmissionResource-id1`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_return Read
Invoke action return\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return.
- Lua path
app.integrations.microsoft_education.invoke_action_return- Full name
microsoft-education.microsoft_education_education_classes_education_class_assignments_education_assignment_submissions_education_submission_return
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_setupresourcesfolder Read
Invoke action setUpResourcesFolder\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder.
- Lua path
app.integrations.microsoft_education.invoke_action_setupresourcesfolder- Full name
microsoft-education.microsoft_education_education_classes_education_class_assignments_education_assignment_submissions_education_submission_set_up_resources_folder
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_submit Read
Invoke action submit\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit.
- Lua path
app.integrations.microsoft_education.invoke_action_submit- Full name
microsoft-education.microsoft_education_education_classes_education_class_assignments_education_assignment_submissions_education_submission_submit
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_submittedresources Read
List submittedResources\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources.
- Lua path
app.integrations.microsoft_education.list_submittedresources- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_list_submitted_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_submitted_resources_get_count_ecf9
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationsubmittedsubmissionresource Read
Get educationSubmittedSubmissionResource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}.
- Lua path
app.integrations.microsoft_education.get_educationsubmittedsubmissionresource- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_get_submitted_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_submitted_resources_list_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_submitted_resources_dependent_resources_get_count_3895
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_classes_assignments_submissions_submitted_resources_get_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
education_submission_resource_id1 | string | yes | Path parameter `educationSubmissionResource-id1`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_unsubmit Read
Invoke action unsubmit\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit.
- Lua path
app.integrations.microsoft_education.invoke_action_unsubmit- Full name
microsoft-education.microsoft_education_education_classes_education_class_assignments_education_assignment_submissions_education_submission_unsubmit
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_function_getrecentlymodifiedsubmissions Read
Invoke function getRecentlyModifiedSubmissions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/getRecentlyModifiedSubmissions().
- Lua path
app.integrations.microsoft_education.invoke_function_getrecentlymodifiedsubmissions- Full name
microsoft-education.microsoft_education_education_classes_education_class_get_recently_modified_submissions
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_group_from Read
Get group from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/group.
- Lua path
app.integrations.microsoft_education.get_group_from- Full name
microsoft-education.microsoft_education_education_classes_get_group
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_serviceprovisioningerrors_property_value Read
Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/group/serviceProvisioningErrors.
- Lua path
app.integrations.microsoft_education.get_serviceprovisioningerrors_property_value- Full name
microsoft-education.microsoft_education_education_classes_group_list_service_provisioning_errors
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/group/serviceProvisioningErrors/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_group_service_provisioning_errors_get_count_5a91
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_members_educationclass Read
List members of an educationClass\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/members.
- Lua path
app.integrations.microsoft_education.list_members_educationclass- Full name
microsoft-education.microsoft_education_education_classes_list_members
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/members/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_members_get_count_4459
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
remove_member_from_educationclass Write
Remove member from educationClass\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/members/$ref.
- Lua path
app.integrations.microsoft_education.remove_member_from_educationclass- Full name
microsoft-education.microsoft_education_education_classes_delete_ref_members
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_members_educationclass Read
List members of an educationClass\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/members/$ref.
- Lua path
app.integrations.microsoft_education.list_members_educationclass- Full name
microsoft-education.microsoft_education_education_classes_list_ref_members
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
add_student Write
Add a student\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/members/$ref.
- Lua path
app.integrations.microsoft_education.add_student- Full name
microsoft-education.microsoft_education_education_classes_create_ref_members
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
remove_member_from_educationclass Write
Remove member from educationClass\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/members/{educationUser-id}/$ref.
- Lua path
app.integrations.microsoft_education.remove_member_from_educationclass- Full name
microsoft-education.microsoft_education_education_classes_members_delete_ref_education_user
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_class_modules Read
List class modules\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/modules.
- Lua path
app.integrations.microsoft_education.list_class_modules- Full name
microsoft-education.microsoft_education_education_classes_list_modules
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_educationmodule Write
Create educationModule\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/modules.
- Lua path
app.integrations.microsoft_education.create_educationmodule- Full name
microsoft-education.microsoft_education_education_classes_create_modules
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/modules/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_modules_get_count_7c88
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_educationmodule Write
Delete educationModule\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/modules/{educationModule-id}.
- Lua path
app.integrations.microsoft_education.delete_educationmodule- Full name
microsoft-education.microsoft_education_education_classes_delete_modules
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_module_id | string | yes | Path parameter `educationModule-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationmodule Read
Get educationModule\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/modules/{educationModule-id}.
- Lua path
app.integrations.microsoft_education.get_educationmodule- Full name
microsoft-education.microsoft_education_education_classes_get_modules
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_module_id | string | yes | Path parameter `educationModule-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_educationmodule Write
Update educationModule\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education/classes/{educationClass-id}/modules/{educationModule-id}.
- Lua path
app.integrations.microsoft_education.update_educationmodule- Full name
microsoft-education.microsoft_education_education_classes_update_modules
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_module_id | string | yes | Path parameter `educationModule-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
invoke_action_pin Read
Invoke action pin\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/modules/{educationModule-id}/pin.
- Lua path
app.integrations.microsoft_education.invoke_action_pin- Full name
microsoft-education.microsoft_education_education_classes_education_class_modules_education_module_pin
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_module_id | string | yes | Path parameter `educationModule-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_publish Read
Invoke action publish\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/modules/{educationModule-id}/publish.
- Lua path
app.integrations.microsoft_education.invoke_action_publish- Full name
microsoft-education.microsoft_education_education_classes_education_class_modules_education_module_publish
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_module_id | string | yes | Path parameter `educationModule-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_module_resources Read
List module resources\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/modules/{educationModule-id}/resources.
- Lua path
app.integrations.microsoft_education.list_module_resources- Full name
microsoft-education.microsoft_education_education_classes_modules_list_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_module_id | string | yes | Path parameter `educationModule-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_educationmoduleresource Write
Create educationModuleResource\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/modules/{educationModule-id}/resources.
- Lua path
app.integrations.microsoft_education.create_educationmoduleresource- Full name
microsoft-education.microsoft_education_education_classes_modules_create_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_module_id | string | yes | Path parameter `educationModule-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/modules/{educationModule-id}/resources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_modules_resources_get_count_2a6c
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_module_id | string | yes | Path parameter `educationModule-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_educationmoduleresource Write
Delete educationModuleResource\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}.
- Lua path
app.integrations.microsoft_education.delete_educationmoduleresource- Full name
microsoft-education.microsoft_education_education_classes_modules_delete_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_module_id | string | yes | Path parameter `educationModule-id`. |
education_module_resource_id | string | yes | Path parameter `educationModuleResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationmoduleresource Read
Get educationModuleResource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}.
- Lua path
app.integrations.microsoft_education.get_educationmoduleresource- Full name
microsoft-education.microsoft_education_education_classes_modules_get_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_module_id | string | yes | Path parameter `educationModule-id`. |
education_module_resource_id | string | yes | Path parameter `educationModuleResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_educationmoduleresource Write
Update educationModuleResource\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}.
- Lua path
app.integrations.microsoft_education.update_educationmoduleresource- Full name
microsoft-education.microsoft_education_education_classes_modules_update_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_module_id | string | yes | Path parameter `educationModule-id`. |
education_module_resource_id | string | yes | Path parameter `educationModuleResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
invoke_action_setupresourcesfolder Read
Invoke action setUpResourcesFolder\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/modules/{educationModule-id}/setUpResourcesFolder.
- Lua path
app.integrations.microsoft_education.invoke_action_setupresourcesfolder- Full name
microsoft-education.microsoft_education_education_classes_education_class_modules_education_module_set_up_resources_folder
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_module_id | string | yes | Path parameter `educationModule-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_unpin Read
Invoke action unpin\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/modules/{educationModule-id}/unpin.
- Lua path
app.integrations.microsoft_education.invoke_action_unpin- Full name
microsoft-education.microsoft_education_education_classes_education_class_modules_education_module_unpin
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_module_id | string | yes | Path parameter `educationModule-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_schools Read
List schools\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/schools.
- Lua path
app.integrations.microsoft_education.list_schools- Full name
microsoft-education.microsoft_education_education_classes_list_schools
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/schools/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_schools_get_count_fef1
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_schools_from Read
Get schools from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/schools/{educationSchool-id}.
- Lua path
app.integrations.microsoft_education.get_schools_from- Full name
microsoft-education.microsoft_education_education_classes_get_schools
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_teachers Read
List teachers\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/teachers.
- Lua path
app.integrations.microsoft_education.list_teachers- Full name
microsoft-education.microsoft_education_education_classes_list_teachers
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/teachers/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_classes_teachers_get_count_4305
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
remove_teacher_from_educationclass Write
Remove teacher from educationClass\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/teachers/$ref.
- Lua path
app.integrations.microsoft_education.remove_teacher_from_educationclass- Full name
microsoft-education.microsoft_education_education_classes_delete_ref_teachers
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_teachers Read
List teachers\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/classes/{educationClass-id}/teachers/$ref.
- Lua path
app.integrations.microsoft_education.list_teachers- Full name
microsoft-education.microsoft_education_education_classes_list_ref_teachers
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
add_teacher Write
Add teacher\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/classes/{educationClass-id}/teachers/$ref.
- Lua path
app.integrations.microsoft_education.add_teacher- Full name
microsoft-education.microsoft_education_education_classes_create_ref_teachers
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
remove_teacher_from_educationclass Write
Remove teacher from educationClass\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/classes/{educationClass-id}/teachers/{educationUser-id}/$ref.
- Lua path
app.integrations.microsoft_education.remove_teacher_from_educationclass- Full name
microsoft-education.microsoft_education_education_classes_teachers_delete_ref_education_user
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_me_from Read
Get me from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me.
- Lua path
app.integrations.microsoft_education.get_me_from- Full name
microsoft-education.microsoft_education_education_get_me
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_assignments_user Read
List assignments of a user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments.
- Lua path
app.integrations.microsoft_education.list_assignments_user- Full name
microsoft-education.microsoft_education_education_me_list_assignments
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_assignments_get_count_d634
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_function_delta Read
Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/delta().
- Lua path
app.integrations.microsoft_education.invoke_function_delta- Full name
microsoft-education.microsoft_education_education_me_assignments_delta
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_assignments_from Read
Get assignments from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}.
- Lua path
app.integrations.microsoft_education.get_assignments_from- Full name
microsoft-education.microsoft_education_education_me_get_assignments
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_activate Read
Invoke action activate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/me/assignments/{educationAssignment-id}/activate.
- Lua path
app.integrations.microsoft_education.invoke_action_activate- Full name
microsoft-education.microsoft_education_education_me_assignments_education_assignment_activate
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_categories_from Read
Get categories from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/categories.
- Lua path
app.integrations.microsoft_education.get_categories_from- Full name
microsoft-education.microsoft_education_education_me_assignments_list_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/categories/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_assignments_categories_get_count_da6c
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_ref_categories_from Read
Get ref of categories from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/categories/$ref.
- Lua path
app.integrations.microsoft_education.get_ref_categories_from- Full name
microsoft-education.microsoft_education_education_me_assignments_list_ref_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_function_delta Read
Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/categories/delta().
- Lua path
app.integrations.microsoft_education.invoke_function_delta- Full name
microsoft-education.microsoft_education_education_me_assignments_education_assignment_categories_delta
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_deactivate Read
Invoke action deactivate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/me/assignments/{educationAssignment-id}/deactivate.
- Lua path
app.integrations.microsoft_education.invoke_action_deactivate- Full name
microsoft-education.microsoft_education_education_me_assignments_education_assignment_deactivate
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_gradingcategory_from Read
Get gradingCategory from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/gradingCategory.
- Lua path
app.integrations.microsoft_education.get_gradingcategory_from- Full name
microsoft-education.microsoft_education_education_me_assignments_get_grading_category
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_gradingscheme_from Read
Get gradingScheme from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/gradingScheme.
- Lua path
app.integrations.microsoft_education.get_gradingscheme_from- Full name
microsoft-education.microsoft_education_education_me_assignments_get_grading_scheme
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_publish Read
Invoke action publish\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/me/assignments/{educationAssignment-id}/publish.
- Lua path
app.integrations.microsoft_education.invoke_action_publish- Full name
microsoft-education.microsoft_education_education_me_assignments_education_assignment_publish
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_resources_from Read
Get resources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/resources.
- Lua path
app.integrations.microsoft_education.get_resources_from- Full name
microsoft-education.microsoft_education_education_me_assignments_list_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/resources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_assignments_resources_get_count_c8bf
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_resources_from Read
Get resources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}.
- Lua path
app.integrations.microsoft_education.get_resources_from- Full name
microsoft-education.microsoft_education_education_me_assignments_get_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_assignment_resource_id | string | yes | Path parameter `educationAssignmentResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_me_assignments_resources_list_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_assignment_resource_id | string | yes | Path parameter `educationAssignmentResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_assignments_resources_dependent_resources_get_count_7e26
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_assignment_resource_id | string | yes | Path parameter `educationAssignmentResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_me_assignments_resources_get_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_assignment_resource_id | string | yes | Path parameter `educationAssignmentResource-id`. |
education_assignment_resource_id1 | string | yes | Path parameter `educationAssignmentResource-id1`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_rubric_from Read
Get rubric from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/rubric.
- Lua path
app.integrations.microsoft_education.get_rubric_from- Full name
microsoft-education.microsoft_education_education_me_assignments_get_rubric
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_ref_rubric_from Read
Get ref of rubric from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/rubric/$ref.
- Lua path
app.integrations.microsoft_education.get_ref_rubric_from- Full name
microsoft-education.microsoft_education_education_me_assignments_get_ref_rubric
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_setupfeedbackresourcesfolder Read
Invoke action setUpFeedbackResourcesFolder\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/me/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder.
- Lua path
app.integrations.microsoft_education.invoke_action_setupfeedbackresourcesfolder- Full name
microsoft-education.microsoft_education_education_me_assignments_education_assignment_set_up_feedback_resources_folder
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_setupresourcesfolder Read
Invoke action setUpResourcesFolder\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/me/assignments/{educationAssignment-id}/setUpResourcesFolder.
- Lua path
app.integrations.microsoft_education.invoke_action_setupresourcesfolder- Full name
microsoft-education.microsoft_education_education_me_assignments_education_assignment_set_up_resources_folder
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_submissions_from Read
Get submissions from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions.
- Lua path
app.integrations.microsoft_education.get_submissions_from- Full name
microsoft-education.microsoft_education_education_me_assignments_list_submissions
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_get_count_39e1
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_submissions_from Read
Get submissions from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}.
- Lua path
app.integrations.microsoft_education.get_submissions_from- Full name
microsoft-education.microsoft_education_education_me_assignments_get_submissions
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_excuse Read
Invoke action excuse\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/excuse.
- Lua path
app.integrations.microsoft_education.invoke_action_excuse- Full name
microsoft-education.microsoft_education_education_me_assignments_education_assignment_submissions_education_submission_excuse
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_outcomes_from Read
Get outcomes from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes.
- Lua path
app.integrations.microsoft_education.get_outcomes_from- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_list_outcomes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_outcomes_get_count_86b6
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_outcomes_from Read
Get outcomes from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}.
- Lua path
app.integrations.microsoft_education.get_outcomes_from- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_get_outcomes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_outcome_id | string | yes | Path parameter `educationOutcome-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_reassign Read
Invoke action reassign\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign.
- Lua path
app.integrations.microsoft_education.invoke_action_reassign- Full name
microsoft-education.microsoft_education_education_me_assignments_education_assignment_submissions_education_submission_reassign
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_resources_from Read
Get resources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources.
- Lua path
app.integrations.microsoft_education.get_resources_from- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_list_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_resources_get_count_4a0c
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_resources_from Read
Get resources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}.
- Lua path
app.integrations.microsoft_education.get_resources_from- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_get_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_resources_list_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_resources_dependent_resources_get_count_20a6
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_resources_get_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
education_submission_resource_id1 | string | yes | Path parameter `educationSubmissionResource-id1`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_return Read
Invoke action return\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return.
- Lua path
app.integrations.microsoft_education.invoke_action_return- Full name
microsoft-education.microsoft_education_education_me_assignments_education_assignment_submissions_education_submission_return
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_setupresourcesfolder Read
Invoke action setUpResourcesFolder\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder.
- Lua path
app.integrations.microsoft_education.invoke_action_setupresourcesfolder- Full name
microsoft-education.microsoft_education_education_me_assignments_education_assignment_submissions_education_submission_set_up_resources_folder
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_submit Read
Invoke action submit\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit.
- Lua path
app.integrations.microsoft_education.invoke_action_submit- Full name
microsoft-education.microsoft_education_education_me_assignments_education_assignment_submissions_education_submission_submit
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_submittedresources_from Read
Get submittedResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources.
- Lua path
app.integrations.microsoft_education.get_submittedresources_from- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_list_submitted_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_submitted_resources_get_count_a574
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_submittedresources_from Read
Get submittedResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}.
- Lua path
app.integrations.microsoft_education.get_submittedresources_from- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_get_submitted_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_submitted_resources_list_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_submitted_resources_dependent_resources_get_count_58f3
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_me_assignments_submissions_submitted_resources_get_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
education_submission_resource_id1 | string | yes | Path parameter `educationSubmissionResource-id1`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_unsubmit Read
Invoke action unsubmit\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit.
- Lua path
app.integrations.microsoft_education.invoke_action_unsubmit- Full name
microsoft-education.microsoft_education_education_me_assignments_education_assignment_submissions_education_submission_unsubmit
| Parameter | Type | Required | Description |
|---|---|---|---|
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_classes_educationuser Read
List classes of an educationUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/classes.
- Lua path
app.integrations.microsoft_education.list_classes_educationuser- Full name
microsoft-education.microsoft_education_education_me_list_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/classes/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_classes_get_count_94ca
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_classes_from Read
Get classes from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/classes/{educationClass-id}.
- Lua path
app.integrations.microsoft_education.get_classes_from- Full name
microsoft-education.microsoft_education_education_me_get_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_rubrics Read
List rubrics\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/rubrics.
- Lua path
app.integrations.microsoft_education.list_rubrics- Full name
microsoft-education.microsoft_education_education_me_list_rubrics
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_educationrubric Write
Create educationRubric\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/me/rubrics.
- Lua path
app.integrations.microsoft_education.create_educationrubric- Full name
microsoft-education.microsoft_education_education_me_create_rubrics
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/rubrics/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_rubrics_get_count_346e
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_educationrubric Write
Delete educationRubric\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/me/rubrics/{educationRubric-id}.
- Lua path
app.integrations.microsoft_education.delete_educationrubric- Full name
microsoft-education.microsoft_education_education_me_delete_rubrics
| Parameter | Type | Required | Description |
|---|---|---|---|
education_rubric_id | string | yes | Path parameter `educationRubric-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationrubric Read
Get educationRubric\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/rubrics/{educationRubric-id}.
- Lua path
app.integrations.microsoft_education.get_educationrubric- Full name
microsoft-education.microsoft_education_education_me_get_rubrics
| Parameter | Type | Required | Description |
|---|---|---|---|
education_rubric_id | string | yes | Path parameter `educationRubric-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_educationrubric Write
Update educationRubric\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education/me/rubrics/{educationRubric-id}.
- Lua path
app.integrations.microsoft_education.update_educationrubric- Full name
microsoft-education.microsoft_education_education_me_update_rubrics
| Parameter | Type | Required | Description |
|---|---|---|---|
education_rubric_id | string | yes | Path parameter `educationRubric-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
list_schools_educationuser Read
List schools of an educationUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/schools.
- Lua path
app.integrations.microsoft_education.list_schools_educationuser- Full name
microsoft-education.microsoft_education_education_me_list_schools
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/schools/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_schools_get_count_c9bf
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_schools_from Read
Get schools from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/schools/{educationSchool-id}.
- Lua path
app.integrations.microsoft_education.get_schools_from- Full name
microsoft-education.microsoft_education_education_me_get_schools
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_taughtclasses_from Read
Get taughtClasses from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/taughtClasses.
- Lua path
app.integrations.microsoft_education.get_taughtclasses_from- Full name
microsoft-education.microsoft_education_education_me_list_taught_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/taughtClasses/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_taught_classes_get_count_94df
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_taughtclasses_from Read
Get taughtClasses from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/taughtClasses/{educationClass-id}.
- Lua path
app.integrations.microsoft_education.get_taughtclasses_from- Full name
microsoft-education.microsoft_education_education_me_get_taught_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationuser Read
Get educationUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/user.
- Lua path
app.integrations.microsoft_education.get_educationuser- Full name
microsoft-education.microsoft_education_education_me_get_user
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_mailboxsettings_property_value Read
Get mailboxSettings property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/user/mailboxSettings.
- Lua path
app.integrations.microsoft_education.get_mailboxsettings_property_value- Full name
microsoft-education.microsoft_education_education_me_user_get_mailbox_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_property_mailboxsettings_value Write
Update property mailboxSettings value.\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education/me/user/mailboxSettings.
- Lua path
app.integrations.microsoft_education.update_property_mailboxsettings_value- Full name
microsoft-education.microsoft_education_education_me_user_update_mailbox_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_serviceprovisioningerrors_property_value Read
Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/user/serviceProvisioningErrors.
- Lua path
app.integrations.microsoft_education.get_serviceprovisioningerrors_property_value- Full name
microsoft-education.microsoft_education_education_me_user_list_service_provisioning_errors
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/me/user/serviceProvisioningErrors/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_me_user_service_provisioning_errors_get_count_b2a3
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_reports_from Read
Get reports from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/reports.
- Lua path
app.integrations.microsoft_education.get_reports_from- Full name
microsoft-education.microsoft_education_education_get_reports
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_readingassignmentsubmissions Read
List readingAssignmentSubmissions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/reports/readingAssignmentSubmissions.
- Lua path
app.integrations.microsoft_education.list_readingassignmentsubmissions- Full name
microsoft-education.microsoft_education_education_reports_list_reading_assignment_submissions
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/reports/readingAssignmentSubmissions/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_reports_reading_assignment_submissions_get_count_536e
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_readingassignmentsubmissions_from Read
Get readingAssignmentSubmissions from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/reports/readingAssignmentSubmissions/{readingAssignmentSubmission-id}.
- Lua path
app.integrations.microsoft_education.get_readingassignmentsubmissions_from- Full name
microsoft-education.microsoft_education_education_reports_get_reading_assignment_submissions
| Parameter | Type | Required | Description |
|---|---|---|---|
reading_assignment_submission_id | string | yes | Path parameter `readingAssignmentSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_readingcoachpassages Read
List readingCoachPassages\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/reports/readingCoachPassages.
- Lua path
app.integrations.microsoft_education.list_readingcoachpassages- Full name
microsoft-education.microsoft_education_education_reports_list_reading_coach_passages
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/reports/readingCoachPassages/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_reports_reading_coach_passages_get_count_ce63
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_readingcoachpassages_from Read
Get readingCoachPassages from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/reports/readingCoachPassages/{readingCoachPassage-id}.
- Lua path
app.integrations.microsoft_education.get_readingcoachpassages_from- Full name
microsoft-education.microsoft_education_education_reports_get_reading_coach_passages
| Parameter | Type | Required | Description |
|---|---|---|---|
reading_coach_passage_id | string | yes | Path parameter `readingCoachPassage-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_reflectcheckinresponses Read
List reflectCheckInResponses\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/reports/reflectCheckInResponses.
- Lua path
app.integrations.microsoft_education.list_reflectcheckinresponses- Full name
microsoft-education.microsoft_education_education_reports_list_reflect_check_in_responses
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/reports/reflectCheckInResponses/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_reports_reflect_check_in_responses_get_count_1316
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_reflectcheckinresponses_from Read
Get reflectCheckInResponses from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/reports/reflectCheckInResponses/{reflectCheckInResponse-id}.
- Lua path
app.integrations.microsoft_education.get_reflectcheckinresponses_from- Full name
microsoft-education.microsoft_education_education_reports_get_reflect_check_in_responses
| Parameter | Type | Required | Description |
|---|---|---|---|
reflect_check_in_response_id | string | yes | Path parameter `reflectCheckInResponse-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_speakerassignmentsubmissions Read
List speakerAssignmentSubmissions\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/reports/speakerAssignmentSubmissions.
- Lua path
app.integrations.microsoft_education.list_speakerassignmentsubmissions- Full name
microsoft-education.microsoft_education_education_reports_list_speaker_assignment_submissions
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/reports/speakerAssignmentSubmissions/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_reports_speaker_assignment_submissions_get_count_e40d
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_speakerassignmentsubmissions_from Read
Get speakerAssignmentSubmissions from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/reports/speakerAssignmentSubmissions/{speakerAssignmentSubmission-id}.
- Lua path
app.integrations.microsoft_education.get_speakerassignmentsubmissions_from- Full name
microsoft-education.microsoft_education_education_reports_get_speaker_assignment_submissions
| Parameter | Type | Required | Description |
|---|---|---|---|
speaker_assignment_submission_id | string | yes | Path parameter `speakerAssignmentSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_educationschools Read
List educationSchools\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/schools.
- Lua path
app.integrations.microsoft_education.list_educationschools- Full name
microsoft-education.microsoft_education_education_list_schools
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_educationschool Write
Create educationSchool\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/schools.
- Lua path
app.integrations.microsoft_education.create_educationschool- Full name
microsoft-education.microsoft_education_education_create_schools
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/schools/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_schools_get_count_c02b
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_function_delta Read
Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/schools/delta().
- Lua path
app.integrations.microsoft_education.invoke_function_delta- Full name
microsoft-education.microsoft_education_education_schools_delta
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_educationschool Write
Delete educationSchool\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/schools/{educationSchool-id}.
- Lua path
app.integrations.microsoft_education.delete_educationschool- Full name
microsoft-education.microsoft_education_education_delete_schools
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationschool Read
Get educationSchool\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/schools/{educationSchool-id}.
- Lua path
app.integrations.microsoft_education.get_educationschool- Full name
microsoft-education.microsoft_education_education_get_schools
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_educationschool Write
Update educationSchool\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education/schools/{educationSchool-id}.
- Lua path
app.integrations.microsoft_education.update_educationschool- Full name
microsoft-education.microsoft_education_education_update_schools
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_administrativeunit_from Read
Get administrativeUnit from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/schools/{educationSchool-id}/administrativeUnit.
- Lua path
app.integrations.microsoft_education.get_administrativeunit_from- Full name
microsoft-education.microsoft_education_education_schools_get_administrative_unit
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_classes_educationschool Read
List classes of an educationSchool\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/schools/{educationSchool-id}/classes.
- Lua path
app.integrations.microsoft_education.list_classes_educationschool- Full name
microsoft-education.microsoft_education_education_schools_list_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/schools/{educationSchool-id}/classes/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_schools_classes_get_count_d3ee
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
remove_educationclass Write
Remove educationClass\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/schools/{educationSchool-id}/classes/$ref.
- Lua path
app.integrations.microsoft_education.remove_educationclass- Full name
microsoft-education.microsoft_education_education_schools_delete_ref_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_classes_educationschool Read
List classes of an educationSchool\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/schools/{educationSchool-id}/classes/$ref.
- Lua path
app.integrations.microsoft_education.list_classes_educationschool- Full name
microsoft-education.microsoft_education_education_schools_list_ref_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
add_educationclass_educationschool Write
Add educationClass to educationSchool\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/schools/{educationSchool-id}/classes/$ref.
- Lua path
app.integrations.microsoft_education.add_educationclass_educationschool- Full name
microsoft-education.microsoft_education_education_schools_create_ref_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
remove_educationclass Write
Remove educationClass\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/schools/{educationSchool-id}/classes/{educationClass-id}/$ref.
- Lua path
app.integrations.microsoft_education.remove_educationclass- Full name
microsoft-education.microsoft_education_education_schools_classes_delete_ref_education_class
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_users_educationschool Read
List users of an educationSchool\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/schools/{educationSchool-id}/users.
- Lua path
app.integrations.microsoft_education.list_users_educationschool- Full name
microsoft-education.microsoft_education_education_schools_list_users
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/schools/{educationSchool-id}/users/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_schools_users_get_count_e5a6
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
remove_educationuser_from_educationschool Write
Remove educationUser from an educationSchool\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/schools/{educationSchool-id}/users/$ref.
- Lua path
app.integrations.microsoft_education.remove_educationuser_from_educationschool- Full name
microsoft-education.microsoft_education_education_schools_delete_ref_users
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_users_educationschool Read
List users of an educationSchool\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/schools/{educationSchool-id}/users/$ref.
- Lua path
app.integrations.microsoft_education.list_users_educationschool- Full name
microsoft-education.microsoft_education_education_schools_list_ref_users
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
add_educationuser_educationschool Write
Add educationUser to an educationSchool\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/schools/{educationSchool-id}/users/$ref.
- Lua path
app.integrations.microsoft_education.add_educationuser_educationschool- Full name
microsoft-education.microsoft_education_education_schools_create_ref_users
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
remove_educationuser_from_educationschool Write
Remove educationUser from an educationSchool\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/schools/{educationSchool-id}/users/{educationUser-id}/$ref.
- Lua path
app.integrations.microsoft_education.remove_educationuser_from_educationschool- Full name
microsoft-education.microsoft_education_education_schools_users_delete_ref_education_user
| Parameter | Type | Required | Description |
|---|---|---|---|
education_school_id | string | yes | Path parameter `educationSchool-id`. |
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_educationusers Read
List educationUsers\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users.
- Lua path
app.integrations.microsoft_education.list_educationusers- Full name
microsoft-education.microsoft_education_education_list_users
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
create_educationuser Write
Create educationUser\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/users.
- Lua path
app.integrations.microsoft_education.create_educationuser- Full name
microsoft-education.microsoft_education_education_create_users
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_get_count_6be9
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_function_delta Read
Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/delta().
- Lua path
app.integrations.microsoft_education.invoke_function_delta- Full name
microsoft-education.microsoft_education_education_users_delta
| Parameter | Type | Required | Description |
|---|---|---|---|
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
delete_educationuser Write
Delete educationUser\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /education/users/{educationUser-id}.
- Lua path
app.integrations.microsoft_education.delete_educationuser- Full name
microsoft-education.microsoft_education_education_delete_users
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_educationuser Read
Get educationUser\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}.
- Lua path
app.integrations.microsoft_education.get_educationuser- Full name
microsoft-education.microsoft_education_education_get_users
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_educationuser Write
Update educationUser\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education/users/{educationUser-id}.
- Lua path
app.integrations.microsoft_education.update_educationuser- Full name
microsoft-education.microsoft_education_education_update_users
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
list_assignments_user Read
List assignments of a user\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments.
- Lua path
app.integrations.microsoft_education.list_assignments_user- Full name
microsoft-education.microsoft_education_education_users_list_assignments
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_assignments_get_count_d390
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_function_delta Read
Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/delta().
- Lua path
app.integrations.microsoft_education.invoke_function_delta- Full name
microsoft-education.microsoft_education_education_users_education_user_assignments_delta
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_assignments_from Read
Get assignments from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}.
- Lua path
app.integrations.microsoft_education.get_assignments_from- Full name
microsoft-education.microsoft_education_education_users_get_assignments
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_activate Read
Invoke action activate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/users/{educationUser-id}/assignments/{educationAssignment-id}/activate.
- Lua path
app.integrations.microsoft_education.invoke_action_activate- Full name
microsoft-education.microsoft_education_education_users_education_user_assignments_education_assignment_activate
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_categories_from Read
Get categories from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories.
- Lua path
app.integrations.microsoft_education.get_categories_from- Full name
microsoft-education.microsoft_education_education_users_assignments_list_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_assignments_categories_get_count_0551
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_ref_categories_from Read
Get ref of categories from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$ref.
- Lua path
app.integrations.microsoft_education.get_ref_categories_from- Full name
microsoft-education.microsoft_education_education_users_assignments_list_ref_categories
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_function_delta Read
Invoke function delta\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/delta().
- Lua path
app.integrations.microsoft_education.invoke_function_delta- Full name
microsoft-education.microsoft_education_education_users_education_user_assignments_education_assignment_categories_delta
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_deactivate Read
Invoke action deactivate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/users/{educationUser-id}/assignments/{educationAssignment-id}/deactivate.
- Lua path
app.integrations.microsoft_education.invoke_action_deactivate- Full name
microsoft-education.microsoft_education_education_users_education_user_assignments_education_assignment_deactivate
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_gradingcategory_from Read
Get gradingCategory from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/gradingCategory.
- Lua path
app.integrations.microsoft_education.get_gradingcategory_from- Full name
microsoft-education.microsoft_education_education_users_assignments_get_grading_category
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_gradingscheme_from Read
Get gradingScheme from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/gradingScheme.
- Lua path
app.integrations.microsoft_education.get_gradingscheme_from- Full name
microsoft-education.microsoft_education_education_users_assignments_get_grading_scheme
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_publish Read
Invoke action publish\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/users/{educationUser-id}/assignments/{educationAssignment-id}/publish.
- Lua path
app.integrations.microsoft_education.invoke_action_publish- Full name
microsoft-education.microsoft_education_education_users_education_user_assignments_education_assignment_publish
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_resources_from Read
Get resources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources.
- Lua path
app.integrations.microsoft_education.get_resources_from- Full name
microsoft-education.microsoft_education_education_users_assignments_list_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_assignments_resources_get_count_69da
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_resources_from Read
Get resources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}.
- Lua path
app.integrations.microsoft_education.get_resources_from- Full name
microsoft-education.microsoft_education_education_users_assignments_get_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_assignment_resource_id | string | yes | Path parameter `educationAssignmentResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_users_assignments_resources_list_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_assignment_resource_id | string | yes | Path parameter `educationAssignmentResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_assignments_resources_dependent_resources_get_count_e1ee
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_assignment_resource_id | string | yes | Path parameter `educationAssignmentResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_users_assignments_resources_get_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_assignment_resource_id | string | yes | Path parameter `educationAssignmentResource-id`. |
education_assignment_resource_id1 | string | yes | Path parameter `educationAssignmentResource-id1`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_rubric_from Read
Get rubric from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric.
- Lua path
app.integrations.microsoft_education.get_rubric_from- Full name
microsoft-education.microsoft_education_education_users_assignments_get_rubric
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_ref_rubric_from Read
Get ref of rubric from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref.
- Lua path
app.integrations.microsoft_education.get_ref_rubric_from- Full name
microsoft-education.microsoft_education_education_users_assignments_get_ref_rubric
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_setupfeedbackresourcesfolder Read
Invoke action setUpFeedbackResourcesFolder\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/users/{educationUser-id}/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder.
- Lua path
app.integrations.microsoft_education.invoke_action_setupfeedbackresourcesfolder- Full name
microsoft-education.microsoft_education_education_users_education_user_assignments_education_assignment_set_up_feedback_resources_folder
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_setupresourcesfolder Read
Invoke action setUpResourcesFolder\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/users/{educationUser-id}/assignments/{educationAssignment-id}/setUpResourcesFolder.
- Lua path
app.integrations.microsoft_education.invoke_action_setupresourcesfolder- Full name
microsoft-education.microsoft_education_education_users_education_user_assignments_education_assignment_set_up_resources_folder
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_submissions_from Read
Get submissions from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions.
- Lua path
app.integrations.microsoft_education.get_submissions_from- Full name
microsoft-education.microsoft_education_education_users_assignments_list_submissions
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_get_count_fe47
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_submissions_from Read
Get submissions from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}.
- Lua path
app.integrations.microsoft_education.get_submissions_from- Full name
microsoft-education.microsoft_education_education_users_assignments_get_submissions
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_excuse Read
Invoke action excuse\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/excuse.
- Lua path
app.integrations.microsoft_education.invoke_action_excuse- Full name
microsoft-education.microsoft_education_education_users_education_user_assignments_education_assignment_submissions_education_submission_excuse
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_outcomes_from Read
Get outcomes from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes.
- Lua path
app.integrations.microsoft_education.get_outcomes_from- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_list_outcomes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_outcomes_get_count_c6c3
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_outcomes_from Read
Get outcomes from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}.
- Lua path
app.integrations.microsoft_education.get_outcomes_from- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_get_outcomes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_outcome_id | string | yes | Path parameter `educationOutcome-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_reassign Read
Invoke action reassign\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign.
- Lua path
app.integrations.microsoft_education.invoke_action_reassign- Full name
microsoft-education.microsoft_education_education_users_education_user_assignments_education_assignment_submissions_education_submission_reassign
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_resources_from Read
Get resources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources.
- Lua path
app.integrations.microsoft_education.get_resources_from- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_list_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_resources_get_count_cb98
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_resources_from Read
Get resources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}.
- Lua path
app.integrations.microsoft_education.get_resources_from- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_get_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_resources_list_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_resources_dependent_resources_get_count_ebf2
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_resources_get_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
education_submission_resource_id1 | string | yes | Path parameter `educationSubmissionResource-id1`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_return Read
Invoke action return\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return.
- Lua path
app.integrations.microsoft_education.invoke_action_return- Full name
microsoft-education.microsoft_education_education_users_education_user_assignments_education_assignment_submissions_education_submission_return
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_setupresourcesfolder Read
Invoke action setUpResourcesFolder\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder.
- Lua path
app.integrations.microsoft_education.invoke_action_setupresourcesfolder- Full name
microsoft-education.microsoft_education_education_users_education_user_assignments_education_assignment_submissions_education_submission_set_up_resources_folder
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_submit Read
Invoke action submit\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit.
- Lua path
app.integrations.microsoft_education.invoke_action_submit- Full name
microsoft-education.microsoft_education_education_users_education_user_assignments_education_assignment_submissions_education_submission_submit
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_submittedresources_from Read
Get submittedResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources.
- Lua path
app.integrations.microsoft_education.get_submittedresources_from- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_list_submitted_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_submitted_resources_get_count_6158
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_submittedresources_from Read
Get submittedResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}.
- Lua path
app.integrations.microsoft_education.get_submittedresources_from- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_get_submitted_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_submitted_resources_list_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_submitted_resources_dependent_resources_get_count_ce4e
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_dependentresources_from Read
Get dependentResources from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}.
- Lua path
app.integrations.microsoft_education.get_dependentresources_from- Full name
microsoft-education.microsoft_education_education_users_assignments_submissions_submitted_resources_get_dependent_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
education_submission_resource_id | string | yes | Path parameter `educationSubmissionResource-id`. |
education_submission_resource_id1 | string | yes | Path parameter `educationSubmissionResource-id1`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
invoke_action_unsubmit Read
Invoke action unsubmit\n\nOfficial Microsoft Graph v1.0 endpoint: POST /education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit.
- Lua path
app.integrations.microsoft_education.invoke_action_unsubmit- Full name
microsoft-education.microsoft_education_education_users_education_user_assignments_education_assignment_submissions_education_submission_unsubmit
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_assignment_id | string | yes | Path parameter `educationAssignment-id`. |
education_submission_id | string | yes | Path parameter `educationSubmission-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_classes_from Read
Get classes from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/classes.
- Lua path
app.integrations.microsoft_education.get_classes_from- Full name
microsoft-education.microsoft_education_education_users_list_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/classes/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_classes_get_count_4517
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_classes_from Read
Get classes from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/classes/{educationClass-id}.
- Lua path
app.integrations.microsoft_education.get_classes_from- Full name
microsoft-education.microsoft_education_education_users_get_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_rubrics_from Read
Get rubrics from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/rubrics.
- Lua path
app.integrations.microsoft_education.get_rubrics_from- Full name
microsoft-education.microsoft_education_education_users_list_rubrics
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/rubrics/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_rubrics_get_count_7e40
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_rubrics_from Read
Get rubrics from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/rubrics/{educationRubric-id}.
- Lua path
app.integrations.microsoft_education.get_rubrics_from- Full name
microsoft-education.microsoft_education_education_users_get_rubrics
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_rubric_id | string | yes | Path parameter `educationRubric-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_schools_from Read
Get schools from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/schools.
- Lua path
app.integrations.microsoft_education.get_schools_from- Full name
microsoft-education.microsoft_education_education_users_list_schools
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/schools/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_schools_get_count_a99c
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_schools_from Read
Get schools from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/schools/{educationSchool-id}.
- Lua path
app.integrations.microsoft_education.get_schools_from- Full name
microsoft-education.microsoft_education_education_users_get_schools
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_school_id | string | yes | Path parameter `educationSchool-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
list_taughtclasses Read
List taughtClasses\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/taughtClasses.
- Lua path
app.integrations.microsoft_education.list_taughtclasses- Full name
microsoft-education.microsoft_education_education_users_list_taught_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/taughtClasses/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_taught_classes_get_count_788d
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_taughtclasses_from Read
Get taughtClasses from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/taughtClasses/{educationClass-id}.
- Lua path
app.integrations.microsoft_education.get_taughtclasses_from- Full name
microsoft-education.microsoft_education_education_users_get_taught_classes
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
education_class_id | string | yes | Path parameter `educationClass-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_user_from Read
Get user from education\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/user.
- Lua path
app.integrations.microsoft_education.get_user_from- Full name
microsoft-education.microsoft_education_education_users_get_user
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_mailboxsettings_property_value Read
Get mailboxSettings property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/user/mailboxSettings.
- Lua path
app.integrations.microsoft_education.get_mailboxsettings_property_value- Full name
microsoft-education.microsoft_education_education_users_user_get_mailbox_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
update_property_mailboxsettings_value Write
Update property mailboxSettings value.\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /education/users/{educationUser-id}/user/mailboxSettings.
- Lua path
app.integrations.microsoft_education.update_property_mailboxsettings_value- Full name
microsoft-education.microsoft_education_education_users_user_update_mailbox_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
body | object | yes | Request body matching the official Microsoft Graph OpenAPI schema for this operation. |
get_serviceprovisioningerrors_property_value Read
Get serviceProvisioningErrors property value\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/user/serviceProvisioningErrors.
- Lua path
app.integrations.microsoft_education.get_serviceprovisioningerrors_property_value- Full name
microsoft-education.microsoft_education_education_users_user_list_service_provisioning_errors
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |
get_number_resource Read
Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /education/users/{educationUser-id}/user/serviceProvisioningErrors/$count.
- Lua path
app.integrations.microsoft_education.get_number_resource- Full name
microsoft-education.microsoft_education_education_users_user_service_provisioning_errors_get_count_9dc6
| Parameter | Type | Required | Description |
|---|---|---|---|
education_user_id | string | yes | Path parameter `educationUser-id`. |
top | string | no | Microsoft Graph OData query parameter `$top`. |
skip | string | no | Microsoft Graph OData query parameter `$skip`. |
search | string | no | Microsoft Graph OData query parameter `$search`. |
filter | string | no | Microsoft Graph OData query parameter `$filter`. |
orderby | string | no | Microsoft Graph OData query parameter `$orderby`. |
select | string | no | Microsoft Graph OData query parameter `$select`. |
expand | string | no | Microsoft Graph OData query parameter `$expand`. |
count | boolean | no | Microsoft Graph OData query parameter `$count`. |
if_match | string | no | Optional Microsoft Graph `If-Match` header for conditional updates or deletes. |
prefer | string | no | Optional Microsoft Graph `Prefer` header. |
consistency_level | string | no | Optional Microsoft Graph `ConsistencyLevel` header, usually `eventual` for advanced queries. |